diff --git a/README.md b/README.md index e2c5ed8..e63fe37 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Voximplant API client library -#### Version 1.4.0 +#### Version 1.5.0 ## Prerequisites @@ -25,7 +25,7 @@ Setup a `maven` dependency for your project: org.voximplant apiclient - 1.4.0 + 1.5.0 ``` diff --git a/pom.xml b/pom.xml index 639ef2d..5cdcb17 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ com.voximplant apiclient - 1.4.0 + 1.5.0 jar voximplant-apiclient diff --git a/src/main/java/com/voximplant/apiclient/VoximplantAPIClient.java b/src/main/java/com/voximplant/apiclient/VoximplantAPIClient.java index 8b639a0..f81fda3 100644 --- a/src/main/java/com/voximplant/apiclient/VoximplantAPIClient.java +++ b/src/main/java/com/voximplant/apiclient/VoximplantAPIClient.java @@ -36,361 +36,354 @@ public VoximplantAPIClient(ClientConfiguration clientConfiguration) throws IOExc this.impl = new VoximplantAPIClientImpl(clientConfiguration); } - public GetAccountInfoResponse getAccountInfo(GetAccountInfoRequest req) throws java.io.IOException, ClientException { - ObjectMapper mapper = new ObjectMapper(); - mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); - mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("GetAccountInfo", RequestSerializer.serialize(req)), GetAccountInfoResponse.class); - } - - public SetAccountInfoResponse setAccountInfo(SetAccountInfoRequest req) throws java.io.IOException, ClientException { + public A2PGetSmsHistoryResponse a2PGetSmsHistory(A2PGetSmsHistoryRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("SetAccountInfo", RequestSerializer.serialize(req)), SetAccountInfoResponse.class); + return mapper.readValue(impl.performRequest("A2PGetSmsHistory", RequestSerializer.serialize(req)), A2PGetSmsHistoryResponse.class); } - public SetChildAccountInfoResponse setChildAccountInfo(SetChildAccountInfoRequest req) throws java.io.IOException, ClientException { + public A2PSendSmsResponse a2PSendSms(A2PSendSmsRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("SetChildAccountInfo", RequestSerializer.serialize(req)), SetChildAccountInfoResponse.class); + return mapper.readValue(impl.performRequest("A2PSendSms", RequestSerializer.serialize(req)), A2PSendSmsResponse.class); } - public GetCurrencyRateResponse getCurrencyRate(GetCurrencyRateRequest req) throws java.io.IOException, ClientException { + public ActivateCallerIDResponse activateCallerID(ActivateCallerIDRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("GetCurrencyRate", RequestSerializer.serialize(req)), GetCurrencyRateResponse.class); + return mapper.readValue(impl.performRequest("ActivateCallerID", RequestSerializer.serialize(req)), ActivateCallerIDResponse.class); } - public GetResourcePriceResponse getResourcePrice(GetResourcePriceRequest req) throws java.io.IOException, ClientException { + public ActivateOutboundTestPhoneNumberResponse activateOutboundTestPhoneNumber(ActivateOutboundTestPhoneNumberRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("GetResourcePrice", RequestSerializer.serialize(req)), GetResourcePriceResponse.class); + return mapper.readValue(impl.performRequest("ActivateOutboundTestPhoneNumber", RequestSerializer.serialize(req)), ActivateOutboundTestPhoneNumberResponse.class); } - public GetSubscriptionPriceResponse getSubscriptionPrice(GetSubscriptionPriceRequest req) throws java.io.IOException, ClientException { + public AddAdminRoleResponse addAdminRole(AddAdminRoleRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("GetSubscriptionPrice", RequestSerializer.serialize(req)), GetSubscriptionPriceResponse.class); + return mapper.readValue(impl.performRequest("AddAdminRole", RequestSerializer.serialize(req)), AddAdminRoleResponse.class); } - public GetChildrenAccountsResponse getChildrenAccounts(GetChildrenAccountsRequest req) throws java.io.IOException, ClientException { + public AddAdminUserResponse addAdminUser(AddAdminUserRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("GetChildrenAccounts", RequestSerializer.serialize(req)), GetChildrenAccountsResponse.class); + return mapper.readValue(impl.performRequest("AddAdminUser", RequestSerializer.serialize(req)), AddAdminUserResponse.class); } - public GetMoneyAmountToChargeResponse getMoneyAmountToCharge(GetMoneyAmountToChargeRequest req) throws java.io.IOException, ClientException { + public AddApplicationResponse addApplication(AddApplicationRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("GetMoneyAmountToCharge", RequestSerializer.serialize(req)), GetMoneyAmountToChargeResponse.class); + return mapper.readValue(impl.performRequest("AddApplication", RequestSerializer.serialize(req)), AddApplicationResponse.class); } - public ChargeAccountResponse chargeAccount(ChargeAccountRequest req) throws java.io.IOException, ClientException { + public AddAuthorizedAccountIPResponse addAuthorizedAccountIP(AddAuthorizedAccountIPRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("ChargeAccount", RequestSerializer.serialize(req)), ChargeAccountResponse.class); + return mapper.readValue(impl.performRequest("AddAuthorizedAccountIP", RequestSerializer.serialize(req)), AddAuthorizedAccountIPResponse.class); } - public ChangeAccountPlanResponse changeAccountPlan(ChangeAccountPlanRequest req) throws java.io.IOException, ClientException { + public AddCallerIDResponse addCallerID(AddCallerIDRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("ChangeAccountPlan", RequestSerializer.serialize(req)), ChangeAccountPlanResponse.class); + return mapper.readValue(impl.performRequest("AddCallerID", RequestSerializer.serialize(req)), AddCallerIDResponse.class); } - public GetAccountPlansResponse getAccountPlans(GetAccountPlansRequest req) throws java.io.IOException, ClientException { + public AddDialogflowKeyResponse addDialogflowKey(AddDialogflowKeyRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("GetAccountPlans", RequestSerializer.serialize(req)), GetAccountPlansResponse.class); + return mapper.readValue(impl.performRequest("AddDialogflowKey", RequestSerializer.serialize(req)), AddDialogflowKeyResponse.class); } - public GetAvailablePlansResponse getAvailablePlans(GetAvailablePlansRequest req) throws java.io.IOException, ClientException { + public AddOutboundTestPhoneNumberResponse addOutboundTestPhoneNumber(AddOutboundTestPhoneNumberRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("GetAvailablePlans", RequestSerializer.serialize(req)), GetAvailablePlansResponse.class); + return mapper.readValue(impl.performRequest("AddOutboundTestPhoneNumber", RequestSerializer.serialize(req)), AddOutboundTestPhoneNumberResponse.class); } - public AddApplicationResponse addApplication(AddApplicationRequest req) throws java.io.IOException, ClientException { + public AddPstnBlackListItemResponse addPstnBlackListItem(AddPstnBlackListItemRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("AddApplication", RequestSerializer.serialize(req)), AddApplicationResponse.class); + return mapper.readValue(impl.performRequest("AddPstnBlackListItem", RequestSerializer.serialize(req)), AddPstnBlackListItemResponse.class); } - public DelApplicationResponse delApplication(DelApplicationRequest req) throws java.io.IOException, ClientException { + public AddPushCredentialResponse addPushCredential(AddPushCredentialRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("DelApplication", RequestSerializer.serialize(req)), DelApplicationResponse.class); + return mapper.readValue(impl.performRequest("AddPushCredential", RequestSerializer.serialize(req)), AddPushCredentialResponse.class); } - public SetApplicationInfoResponse setApplicationInfo(SetApplicationInfoRequest req) throws java.io.IOException, ClientException { + public AddQueueResponse addQueue(AddQueueRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("SetApplicationInfo", RequestSerializer.serialize(req)), SetApplicationInfoResponse.class); + return mapper.readValue(impl.performRequest("AddQueue", RequestSerializer.serialize(req)), AddQueueResponse.class); } - public GetApplicationsResponse getApplications(GetApplicationsRequest req) throws java.io.IOException, ClientException { + public AddRuleResponse addRule(AddRuleRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("GetApplications", RequestSerializer.serialize(req)), GetApplicationsResponse.class); + return mapper.readValue(impl.performRequest("AddRule", RequestSerializer.serialize(req)), AddRuleResponse.class); } - public AddUserResponse addUser(AddUserRequest req) throws java.io.IOException, ClientException { + public AddScenarioResponse addScenario(AddScenarioRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("AddUser", RequestSerializer.serialize(req)), AddUserResponse.class); + return mapper.readValue(impl.performRequest("AddScenario", RequestSerializer.serialize(req)), AddScenarioResponse.class); } - public DelUserResponse delUser(DelUserRequest req) throws java.io.IOException, ClientException { + public AddSipWhiteListItemResponse addSipWhiteListItem(AddSipWhiteListItemRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("DelUser", RequestSerializer.serialize(req)), DelUserResponse.class); + return mapper.readValue(impl.performRequest("AddSipWhiteListItem", RequestSerializer.serialize(req)), AddSipWhiteListItemResponse.class); } - public SetUserInfoResponse setUserInfo(SetUserInfoRequest req) throws java.io.IOException, ClientException { + public AddSkillResponse addSkill(AddSkillRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("SetUserInfo", RequestSerializer.serialize(req)), SetUserInfoResponse.class); + return mapper.readValue(impl.performRequest("AddSkill", RequestSerializer.serialize(req)), AddSkillResponse.class); } - public GetUsersResponse getUsers(GetUsersRequest req) throws java.io.IOException, ClientException { + public AddSubUserResponse addSubUser(AddSubUserRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("GetUsers", RequestSerializer.serialize(req)), GetUsersResponse.class); + return mapper.readValue(impl.performRequest("AddSubUser", RequestSerializer.serialize(req)), AddSubUserResponse.class); } - public TransferMoneyToUserResponse transferMoneyToUser(TransferMoneyToUserRequest req) throws java.io.IOException, ClientException { + public AddUserResponse addUser(AddUserRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("TransferMoneyToUser", RequestSerializer.serialize(req)), TransferMoneyToUserResponse.class); + return mapper.readValue(impl.performRequest("AddUser", RequestSerializer.serialize(req)), AddUserResponse.class); } - public CreateCallListResponse createCallList(CreateCallListRequest req) throws java.io.IOException, ClientException { + public AttachAdminRoleResponse attachAdminRole(AttachAdminRoleRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("CreateCallList", RequestSerializer.serialize(req)), CreateCallListResponse.class); + return mapper.readValue(impl.performRequest("AttachAdminRole", RequestSerializer.serialize(req)), AttachAdminRoleResponse.class); } - public GetCallListsResponse getCallLists(GetCallListsRequest req) throws java.io.IOException, ClientException { + public AttachPhoneNumberResponse attachPhoneNumber(AttachPhoneNumberRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("GetCallLists", RequestSerializer.serialize(req)), GetCallListsResponse.class); + return mapper.readValue(impl.performRequest("AttachPhoneNumber", RequestSerializer.serialize(req)), AttachPhoneNumberResponse.class); } - public GetCallListDetailsResponse getCallListDetails(GetCallListDetailsRequest req) throws java.io.IOException, ClientException { + public BindDialogflowKeysResponse bindDialogflowKeys(BindDialogflowKeysRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("GetCallListDetails", RequestSerializer.serialize(req)), GetCallListDetailsResponse.class); + return mapper.readValue(impl.performRequest("BindDialogflowKeys", RequestSerializer.serialize(req)), BindDialogflowKeysResponse.class); } - public StopCallListProcessingResponse stopCallListProcessing(StopCallListProcessingRequest req) throws java.io.IOException, ClientException { + public BindPhoneNumberToApplicationResponse bindPhoneNumberToApplication(BindPhoneNumberToApplicationRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("StopCallListProcessing", RequestSerializer.serialize(req)), StopCallListProcessingResponse.class); + return mapper.readValue(impl.performRequest("BindPhoneNumberToApplication", RequestSerializer.serialize(req)), BindPhoneNumberToApplicationResponse.class); } - public RecoverCallListResponse recoverCallList(RecoverCallListRequest req) throws java.io.IOException, ClientException { + public BindPushCredentialResponse bindPushCredential(BindPushCredentialRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("RecoverCallList", RequestSerializer.serialize(req)), RecoverCallListResponse.class); + return mapper.readValue(impl.performRequest("BindPushCredential", RequestSerializer.serialize(req)), BindPushCredentialResponse.class); } - public AddScenarioResponse addScenario(AddScenarioRequest req) throws java.io.IOException, ClientException { + public BindScenarioResponse bindScenario(BindScenarioRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("AddScenario", RequestSerializer.serialize(req)), AddScenarioResponse.class); + return mapper.readValue(impl.performRequest("BindScenario", RequestSerializer.serialize(req)), BindScenarioResponse.class); } - public DelScenarioResponse delScenario(DelScenarioRequest req) throws java.io.IOException, ClientException { + public BindSipRegistrationResponse bindSipRegistration(BindSipRegistrationRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("DelScenario", RequestSerializer.serialize(req)), DelScenarioResponse.class); + return mapper.readValue(impl.performRequest("BindSipRegistration", RequestSerializer.serialize(req)), BindSipRegistrationResponse.class); } - public BindScenarioResponse bindScenario(BindScenarioRequest req) throws java.io.IOException, ClientException { + public BindSkillResponse bindSkill(BindSkillRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("BindScenario", RequestSerializer.serialize(req)), BindScenarioResponse.class); + return mapper.readValue(impl.performRequest("BindSkill", RequestSerializer.serialize(req)), BindSkillResponse.class); } - public GetScenariosResponse getScenarios(GetScenariosRequest req) throws java.io.IOException, ClientException { + public BindUserToQueueResponse bindUserToQueue(BindUserToQueueRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("GetScenarios", RequestSerializer.serialize(req)), GetScenariosResponse.class); + return mapper.readValue(impl.performRequest("BindUserToQueue", RequestSerializer.serialize(req)), BindUserToQueueResponse.class); } - public SetScenarioInfoResponse setScenarioInfo(SetScenarioInfoRequest req) throws java.io.IOException, ClientException { + public ChangeAccountPlanResponse changeAccountPlan(ChangeAccountPlanRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("SetScenarioInfo", RequestSerializer.serialize(req)), SetScenarioInfoResponse.class); + return mapper.readValue(impl.performRequest("ChangeAccountPlan", RequestSerializer.serialize(req)), ChangeAccountPlanResponse.class); } - public ReorderScenariosResponse reorderScenarios(ReorderScenariosRequest req) throws java.io.IOException, ClientException { + public ChargeAccountResponse chargeAccount(ChargeAccountRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("ReorderScenarios", RequestSerializer.serialize(req)), ReorderScenariosResponse.class); + return mapper.readValue(impl.performRequest("ChargeAccount", RequestSerializer.serialize(req)), ChargeAccountResponse.class); } - public StartScenariosResponse startScenarios(StartScenariosRequest req) throws java.io.IOException, ClientException { + public CheckAuthorizedAccountIPResponse checkAuthorizedAccountIP(CheckAuthorizedAccountIPRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("StartScenarios", RequestSerializer.serialize(req)), StartScenariosResponse.class); + return mapper.readValue(impl.performRequest("CheckAuthorizedAccountIP", RequestSerializer.serialize(req)), CheckAuthorizedAccountIPResponse.class); } - public StartConferenceResponse startConference(StartConferenceRequest req) throws java.io.IOException, ClientException { + public ControlSmsResponse controlSms(ControlSmsRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("StartConference", RequestSerializer.serialize(req)), StartConferenceResponse.class); + return mapper.readValue(impl.performRequest("ControlSms", RequestSerializer.serialize(req)), ControlSmsResponse.class); } - public AddRuleResponse addRule(AddRuleRequest req) throws java.io.IOException, ClientException { + public CreateCallListResponse createCallList(CreateCallListRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("AddRule", RequestSerializer.serialize(req)), AddRuleResponse.class); + return mapper.readValue(impl.performRequest("CreateCallList", RequestSerializer.serialize(req)), CreateCallListResponse.class); } - public DelRuleResponse delRule(DelRuleRequest req) throws java.io.IOException, ClientException { + public CreateKeyResponse createKey(CreateKeyRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("DelRule", RequestSerializer.serialize(req)), DelRuleResponse.class); + return mapper.readValue(impl.performRequest("CreateKey", RequestSerializer.serialize(req)), CreateKeyResponse.class); } - public SetRuleInfoResponse setRuleInfo(SetRuleInfoRequest req) throws java.io.IOException, ClientException { + public CreateSipRegistrationResponse createSipRegistration(CreateSipRegistrationRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("SetRuleInfo", RequestSerializer.serialize(req)), SetRuleInfoResponse.class); + return mapper.readValue(impl.performRequest("CreateSipRegistration", RequestSerializer.serialize(req)), CreateSipRegistrationResponse.class); } - public GetRulesResponse getRules(GetRulesRequest req) throws java.io.IOException, ClientException { + public DeactivatePhoneNumberResponse deactivatePhoneNumber(DeactivatePhoneNumberRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("GetRules", RequestSerializer.serialize(req)), GetRulesResponse.class); + return mapper.readValue(impl.performRequest("DeactivatePhoneNumber", RequestSerializer.serialize(req)), DeactivatePhoneNumberResponse.class); } - public ReorderRulesResponse reorderRules(ReorderRulesRequest req) throws java.io.IOException, ClientException { + public DelAdminRoleResponse delAdminRole(DelAdminRoleRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("ReorderRules", RequestSerializer.serialize(req)), ReorderRulesResponse.class); + return mapper.readValue(impl.performRequest("DelAdminRole", RequestSerializer.serialize(req)), DelAdminRoleResponse.class); } - public GetCallHistoryResponse getCallHistory(GetCallHistoryRequest req) throws java.io.IOException, ClientException { + public DelAdminUserResponse delAdminUser(DelAdminUserRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("GetCallHistory", RequestSerializer.serialize(req)), GetCallHistoryResponse.class); + return mapper.readValue(impl.performRequest("DelAdminUser", RequestSerializer.serialize(req)), DelAdminUserResponse.class); } - public GetBriefCallHistoryResponse getBriefCallHistory(GetBriefCallHistoryRequest req) throws java.io.IOException, ClientException { + public DelApplicationResponse delApplication(DelApplicationRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("GetBriefCallHistory", RequestSerializer.serialize(req)), GetBriefCallHistoryResponse.class); + return mapper.readValue(impl.performRequest("DelApplication", RequestSerializer.serialize(req)), DelApplicationResponse.class); } - public GetHistoryReportsResponse getHistoryReports(GetHistoryReportsRequest req) throws java.io.IOException, ClientException { + public DelAuthorizedAccountIPResponse delAuthorizedAccountIP(DelAuthorizedAccountIPRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("GetHistoryReports", RequestSerializer.serialize(req)), GetHistoryReportsResponse.class); + return mapper.readValue(impl.performRequest("DelAuthorizedAccountIP", RequestSerializer.serialize(req)), DelAuthorizedAccountIPResponse.class); } - public GetTransactionHistoryResponse getTransactionHistory(GetTransactionHistoryRequest req) throws java.io.IOException, ClientException { + public DelCallerIDResponse delCallerID(DelCallerIDRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("GetTransactionHistory", RequestSerializer.serialize(req)), GetTransactionHistoryResponse.class); + return mapper.readValue(impl.performRequest("DelCallerID", RequestSerializer.serialize(req)), DelCallerIDResponse.class); } - public DeleteRecordResponse deleteRecord(DeleteRecordRequest req) throws java.io.IOException, ClientException { + public DelDialogflowKeyResponse delDialogflowKey(DelDialogflowKeyRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("DeleteRecord", RequestSerializer.serialize(req)), DeleteRecordResponse.class); + return mapper.readValue(impl.performRequest("DelDialogflowKey", RequestSerializer.serialize(req)), DelDialogflowKeyResponse.class); } - public GetACDHistoryResponse getACDHistory(GetACDHistoryRequest req) throws java.io.IOException, ClientException { + public DelKeyValueItemResponse delKeyValueItem(DelKeyValueItemRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("GetACDHistory", RequestSerializer.serialize(req)), GetACDHistoryResponse.class); + return mapper.readValue(impl.performRequest("DelKeyValueItem", RequestSerializer.serialize(req)), DelKeyValueItemResponse.class); } - public GetAuditLogResponse getAuditLog(GetAuditLogRequest req) throws java.io.IOException, ClientException { + public DelOutboundTestPhoneNumberResponse delOutboundTestPhoneNumber(DelOutboundTestPhoneNumberRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("GetAuditLog", RequestSerializer.serialize(req)), GetAuditLogResponse.class); + return mapper.readValue(impl.performRequest("DelOutboundTestPhoneNumber", RequestSerializer.serialize(req)), DelOutboundTestPhoneNumberResponse.class); } - public AddPstnBlackListItemResponse addPstnBlackListItem(AddPstnBlackListItemRequest req) throws java.io.IOException, ClientException { + public DelPstnBlackListItemResponse delPstnBlackListItem(DelPstnBlackListItemRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("AddPstnBlackListItem", RequestSerializer.serialize(req)), AddPstnBlackListItemResponse.class); + return mapper.readValue(impl.performRequest("DelPstnBlackListItem", RequestSerializer.serialize(req)), DelPstnBlackListItemResponse.class); } - public SetPstnBlackListItemResponse setPstnBlackListItem(SetPstnBlackListItemRequest req) throws java.io.IOException, ClientException { + public DelPushCredentialResponse delPushCredential(DelPushCredentialRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("SetPstnBlackListItem", RequestSerializer.serialize(req)), SetPstnBlackListItemResponse.class); + return mapper.readValue(impl.performRequest("DelPushCredential", RequestSerializer.serialize(req)), DelPushCredentialResponse.class); } - public DelPstnBlackListItemResponse delPstnBlackListItem(DelPstnBlackListItemRequest req) throws java.io.IOException, ClientException { + public DelQueueResponse delQueue(DelQueueRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("DelPstnBlackListItem", RequestSerializer.serialize(req)), DelPstnBlackListItemResponse.class); + return mapper.readValue(impl.performRequest("DelQueue", RequestSerializer.serialize(req)), DelQueueResponse.class); } - public GetPstnBlackListResponse getPstnBlackList(GetPstnBlackListRequest req) throws java.io.IOException, ClientException { + public DelRuleResponse delRule(DelRuleRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("GetPstnBlackList", RequestSerializer.serialize(req)), GetPstnBlackListResponse.class); + return mapper.readValue(impl.performRequest("DelRule", RequestSerializer.serialize(req)), DelRuleResponse.class); } - public AddSipWhiteListItemResponse addSipWhiteListItem(AddSipWhiteListItemRequest req) throws java.io.IOException, ClientException { + public DelScenarioResponse delScenario(DelScenarioRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("AddSipWhiteListItem", RequestSerializer.serialize(req)), AddSipWhiteListItemResponse.class); + return mapper.readValue(impl.performRequest("DelScenario", RequestSerializer.serialize(req)), DelScenarioResponse.class); } public DelSipWhiteListItemResponse delSipWhiteListItem(DelSipWhiteListItemRequest req) throws java.io.IOException, ClientException { @@ -400,39 +393,39 @@ public DelSipWhiteListItemResponse delSipWhiteListItem(DelSipWhiteListItemReques return mapper.readValue(impl.performRequest("DelSipWhiteListItem", RequestSerializer.serialize(req)), DelSipWhiteListItemResponse.class); } - public SetSipWhiteListItemResponse setSipWhiteListItem(SetSipWhiteListItemRequest req) throws java.io.IOException, ClientException { + public DelSkillResponse delSkill(DelSkillRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("SetSipWhiteListItem", RequestSerializer.serialize(req)), SetSipWhiteListItemResponse.class); + return mapper.readValue(impl.performRequest("DelSkill", RequestSerializer.serialize(req)), DelSkillResponse.class); } - public GetSipWhiteListResponse getSipWhiteList(GetSipWhiteListRequest req) throws java.io.IOException, ClientException { + public DelSubUserResponse delSubUser(DelSubUserRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("GetSipWhiteList", RequestSerializer.serialize(req)), GetSipWhiteListResponse.class); + return mapper.readValue(impl.performRequest("DelSubUser", RequestSerializer.serialize(req)), DelSubUserResponse.class); } - public CreateSipRegistrationResponse createSipRegistration(CreateSipRegistrationRequest req) throws java.io.IOException, ClientException { + public DelUserResponse delUser(DelUserRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("CreateSipRegistration", RequestSerializer.serialize(req)), CreateSipRegistrationResponse.class); + return mapper.readValue(impl.performRequest("DelUser", RequestSerializer.serialize(req)), DelUserResponse.class); } - public UpdateSipRegistrationResponse updateSipRegistration(UpdateSipRegistrationRequest req) throws java.io.IOException, ClientException { + public DeleteKeyResponse deleteKey(DeleteKeyRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("UpdateSipRegistration", RequestSerializer.serialize(req)), UpdateSipRegistrationResponse.class); + return mapper.readValue(impl.performRequest("DeleteKey", RequestSerializer.serialize(req)), DeleteKeyResponse.class); } - public BindSipRegistrationResponse bindSipRegistration(BindSipRegistrationRequest req) throws java.io.IOException, ClientException { + public DeleteRecordResponse deleteRecord(DeleteRecordRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("BindSipRegistration", RequestSerializer.serialize(req)), BindSipRegistrationResponse.class); + return mapper.readValue(impl.performRequest("DeleteRecord", RequestSerializer.serialize(req)), DeleteRecordResponse.class); } public DeleteSipRegistrationResponse deleteSipRegistration(DeleteSipRegistrationRequest req) throws java.io.IOException, ClientException { @@ -442,74 +435,74 @@ public DeleteSipRegistrationResponse deleteSipRegistration(DeleteSipRegistration return mapper.readValue(impl.performRequest("DeleteSipRegistration", RequestSerializer.serialize(req)), DeleteSipRegistrationResponse.class); } - public GetSipRegistrationsResponse getSipRegistrations(GetSipRegistrationsRequest req) throws java.io.IOException, ClientException { + public GetACDHistoryResponse getACDHistory(GetACDHistoryRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("GetSipRegistrations", RequestSerializer.serialize(req)), GetSipRegistrationsResponse.class); + return mapper.readValue(impl.performRequest("GetACDHistory", RequestSerializer.serialize(req)), GetACDHistoryResponse.class); } - public AttachPhoneNumberResponse attachPhoneNumber(AttachPhoneNumberRequest req) throws java.io.IOException, ClientException { + public GetACDOperatorStatisticsResponse getACDOperatorStatistics(GetACDOperatorStatisticsRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("AttachPhoneNumber", RequestSerializer.serialize(req)), AttachPhoneNumberResponse.class); + return mapper.readValue(impl.performRequest("GetACDOperatorStatistics", RequestSerializer.serialize(req)), GetACDOperatorStatisticsResponse.class); } - public BindPhoneNumberToApplicationResponse bindPhoneNumberToApplication(BindPhoneNumberToApplicationRequest req) throws java.io.IOException, ClientException { + public GetACDOperatorStatusStatisticsResponse getACDOperatorStatusStatistics(GetACDOperatorStatusStatisticsRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("BindPhoneNumberToApplication", RequestSerializer.serialize(req)), BindPhoneNumberToApplicationResponse.class); + return mapper.readValue(impl.performRequest("GetACDOperatorStatusStatistics", RequestSerializer.serialize(req)), GetACDOperatorStatusStatisticsResponse.class); } - public DeactivatePhoneNumberResponse deactivatePhoneNumber(DeactivatePhoneNumberRequest req) throws java.io.IOException, ClientException { + public GetACDQueueStatisticsResponse getACDQueueStatistics(GetACDQueueStatisticsRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("DeactivatePhoneNumber", RequestSerializer.serialize(req)), DeactivatePhoneNumberResponse.class); + return mapper.readValue(impl.performRequest("GetACDQueueStatistics", RequestSerializer.serialize(req)), GetACDQueueStatisticsResponse.class); } - public SetPhoneNumberInfoResponse setPhoneNumberInfo(SetPhoneNumberInfoRequest req) throws java.io.IOException, ClientException { + public GetACDStateResponse getACDState(GetACDStateRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("SetPhoneNumberInfo", RequestSerializer.serialize(req)), SetPhoneNumberInfoResponse.class); + return mapper.readValue(impl.performRequest("GetACDState", RequestSerializer.serialize(req)), GetACDStateResponse.class); } - public GetPhoneNumbersResponse getPhoneNumbers(GetPhoneNumbersRequest req) throws java.io.IOException, ClientException { + public GetAccountDocumentsResponse getAccountDocuments(GetAccountDocumentsRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("GetPhoneNumbers", RequestSerializer.serialize(req)), GetPhoneNumbersResponse.class); + return mapper.readValue(impl.performRequest("GetAccountDocuments", RequestSerializer.serialize(req)), GetAccountDocumentsResponse.class); } - public GetNewPhoneNumbersResponse getNewPhoneNumbers(GetNewPhoneNumbersRequest req) throws java.io.IOException, ClientException { + public GetAccountInfoResponse getAccountInfo(GetAccountInfoRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("GetNewPhoneNumbers", RequestSerializer.serialize(req)), GetNewPhoneNumbersResponse.class); + return mapper.readValue(impl.performRequest("GetAccountInfo", RequestSerializer.serialize(req)), GetAccountInfoResponse.class); } - public GetPhoneNumberCategoriesResponse getPhoneNumberCategories(GetPhoneNumberCategoriesRequest req) throws java.io.IOException, ClientException { + public GetAccountInvoicesResponse getAccountInvoices(GetAccountInvoicesRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("GetPhoneNumberCategories", RequestSerializer.serialize(req)), GetPhoneNumberCategoriesResponse.class); + return mapper.readValue(impl.performRequest("GetAccountInvoices", RequestSerializer.serialize(req)), GetAccountInvoicesResponse.class); } - public GetPhoneNumberCountryStatesResponse getPhoneNumberCountryStates(GetPhoneNumberCountryStatesRequest req) throws java.io.IOException, ClientException { + public GetAccountPhoneNumberCountriesResponse getAccountPhoneNumberCountries(GetAccountPhoneNumberCountriesRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("GetPhoneNumberCountryStates", RequestSerializer.serialize(req)), GetPhoneNumberCountryStatesResponse.class); + return mapper.readValue(impl.performRequest("GetAccountPhoneNumberCountries", RequestSerializer.serialize(req)), GetAccountPhoneNumberCountriesResponse.class); } - public GetPhoneNumberRegionsResponse getPhoneNumberRegions(GetPhoneNumberRegionsRequest req) throws java.io.IOException, ClientException { + public GetAccountPlansResponse getAccountPlans(GetAccountPlansRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("GetPhoneNumberRegions", RequestSerializer.serialize(req)), GetPhoneNumberRegionsResponse.class); + return mapper.readValue(impl.performRequest("GetAccountPlans", RequestSerializer.serialize(req)), GetAccountPlansResponse.class); } public GetActualPhoneNumberRegionResponse getActualPhoneNumberRegion(GetActualPhoneNumberRegionRequest req) throws java.io.IOException, ClientException { @@ -519,738 +512,745 @@ public GetActualPhoneNumberRegionResponse getActualPhoneNumberRegion(GetActualPh return mapper.readValue(impl.performRequest("GetActualPhoneNumberRegion", RequestSerializer.serialize(req)), GetActualPhoneNumberRegionResponse.class); } - public AddCallerIDResponse addCallerID(AddCallerIDRequest req) throws java.io.IOException, ClientException { + public GetAdminRolesResponse getAdminRoles(GetAdminRolesRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("AddCallerID", RequestSerializer.serialize(req)), AddCallerIDResponse.class); + return mapper.readValue(impl.performRequest("GetAdminRoles", RequestSerializer.serialize(req)), GetAdminRolesResponse.class); } - public ActivateCallerIDResponse activateCallerID(ActivateCallerIDRequest req) throws java.io.IOException, ClientException { + public GetAdminUsersResponse getAdminUsers(GetAdminUsersRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("ActivateCallerID", RequestSerializer.serialize(req)), ActivateCallerIDResponse.class); + return mapper.readValue(impl.performRequest("GetAdminUsers", RequestSerializer.serialize(req)), GetAdminUsersResponse.class); } - public DelCallerIDResponse delCallerID(DelCallerIDRequest req) throws java.io.IOException, ClientException { + public GetApplicationsResponse getApplications(GetApplicationsRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("DelCallerID", RequestSerializer.serialize(req)), DelCallerIDResponse.class); + return mapper.readValue(impl.performRequest("GetApplications", RequestSerializer.serialize(req)), GetApplicationsResponse.class); } - public GetCallerIDsResponse getCallerIDs(GetCallerIDsRequest req) throws java.io.IOException, ClientException { + public GetAuditLogResponse getAuditLog(GetAuditLogRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("GetCallerIDs", RequestSerializer.serialize(req)), GetCallerIDsResponse.class); + return mapper.readValue(impl.performRequest("GetAuditLog", RequestSerializer.serialize(req)), GetAuditLogResponse.class); } - public VerifyCallerIDResponse verifyCallerID(VerifyCallerIDRequest req) throws java.io.IOException, ClientException { + public GetAuthorizedAccountIPsResponse getAuthorizedAccountIPs(GetAuthorizedAccountIPsRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("VerifyCallerID", RequestSerializer.serialize(req)), VerifyCallerIDResponse.class); + return mapper.readValue(impl.performRequest("GetAuthorizedAccountIPs", RequestSerializer.serialize(req)), GetAuthorizedAccountIPsResponse.class); } - public AddOutboundTestPhoneNumberResponse addOutboundTestPhoneNumber(AddOutboundTestPhoneNumberRequest req) throws java.io.IOException, ClientException { + public GetAvailableAdminRoleEntriesResponse getAvailableAdminRoleEntries(GetAvailableAdminRoleEntriesRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("AddOutboundTestPhoneNumber", RequestSerializer.serialize(req)), AddOutboundTestPhoneNumberResponse.class); + return mapper.readValue(impl.performRequest("GetAvailableAdminRoleEntries", RequestSerializer.serialize(req)), GetAvailableAdminRoleEntriesResponse.class); } - public VerifyOutboundTestPhoneNumberResponse verifyOutboundTestPhoneNumber(VerifyOutboundTestPhoneNumberRequest req) throws java.io.IOException, ClientException { + public GetAvailablePlansResponse getAvailablePlans(GetAvailablePlansRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("VerifyOutboundTestPhoneNumber", RequestSerializer.serialize(req)), VerifyOutboundTestPhoneNumberResponse.class); + return mapper.readValue(impl.performRequest("GetAvailablePlans", RequestSerializer.serialize(req)), GetAvailablePlansResponse.class); } - public ActivateOutboundTestPhoneNumberResponse activateOutboundTestPhoneNumber(ActivateOutboundTestPhoneNumberRequest req) throws java.io.IOException, ClientException { + public GetAvailableRegulationsResponse getAvailableRegulations(GetAvailableRegulationsRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("ActivateOutboundTestPhoneNumber", RequestSerializer.serialize(req)), ActivateOutboundTestPhoneNumberResponse.class); + return mapper.readValue(impl.performRequest("GetAvailableRegulations", RequestSerializer.serialize(req)), GetAvailableRegulationsResponse.class); } - public DelOutboundTestPhoneNumberResponse delOutboundTestPhoneNumber(DelOutboundTestPhoneNumberRequest req) throws java.io.IOException, ClientException { + public GetBriefCallHistoryResponse getBriefCallHistory(GetBriefCallHistoryRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("DelOutboundTestPhoneNumber", RequestSerializer.serialize(req)), DelOutboundTestPhoneNumberResponse.class); + return mapper.readValue(impl.performRequest("GetBriefCallHistory", RequestSerializer.serialize(req)), GetBriefCallHistoryResponse.class); } - public GetOutboundTestPhoneNumbersResponse getOutboundTestPhoneNumbers(GetOutboundTestPhoneNumbersRequest req) throws java.io.IOException, ClientException { + public GetCallHistoryResponse getCallHistory(GetCallHistoryRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("GetOutboundTestPhoneNumbers", RequestSerializer.serialize(req)), GetOutboundTestPhoneNumbersResponse.class); + return mapper.readValue(impl.performRequest("GetCallHistory", RequestSerializer.serialize(req)), GetCallHistoryResponse.class); } - public AddQueueResponse addQueue(AddQueueRequest req) throws java.io.IOException, ClientException { + public GetCallListDetailsResponse getCallListDetails(GetCallListDetailsRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("AddQueue", RequestSerializer.serialize(req)), AddQueueResponse.class); + return mapper.readValue(impl.performRequest("GetCallListDetails", RequestSerializer.serialize(req)), GetCallListDetailsResponse.class); } - public BindUserToQueueResponse bindUserToQueue(BindUserToQueueRequest req) throws java.io.IOException, ClientException { + public GetCallListsResponse getCallLists(GetCallListsRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("BindUserToQueue", RequestSerializer.serialize(req)), BindUserToQueueResponse.class); + return mapper.readValue(impl.performRequest("GetCallLists", RequestSerializer.serialize(req)), GetCallListsResponse.class); } - public DelQueueResponse delQueue(DelQueueRequest req) throws java.io.IOException, ClientException { + public GetCallerIDsResponse getCallerIDs(GetCallerIDsRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("DelQueue", RequestSerializer.serialize(req)), DelQueueResponse.class); + return mapper.readValue(impl.performRequest("GetCallerIDs", RequestSerializer.serialize(req)), GetCallerIDsResponse.class); } - public SetQueueInfoResponse setQueueInfo(SetQueueInfoRequest req) throws java.io.IOException, ClientException { + public GetChildrenAccountsResponse getChildrenAccounts(GetChildrenAccountsRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("SetQueueInfo", RequestSerializer.serialize(req)), SetQueueInfoResponse.class); + return mapper.readValue(impl.performRequest("GetChildrenAccounts", RequestSerializer.serialize(req)), GetChildrenAccountsResponse.class); } - public GetQueuesResponse getQueues(GetQueuesRequest req) throws java.io.IOException, ClientException { + public GetCountriesResponse getCountries(GetCountriesRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("GetQueues", RequestSerializer.serialize(req)), GetQueuesResponse.class); + return mapper.readValue(impl.performRequest("GetCountries", RequestSerializer.serialize(req)), GetCountriesResponse.class); } - public GetACDStateResponse getACDState(GetACDStateRequest req) throws java.io.IOException, ClientException { + public GetCurrencyRateResponse getCurrencyRate(GetCurrencyRateRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("GetACDState", RequestSerializer.serialize(req)), GetACDStateResponse.class); + return mapper.readValue(impl.performRequest("GetCurrencyRate", RequestSerializer.serialize(req)), GetCurrencyRateResponse.class); } - public GetACDOperatorStatisticsResponse getACDOperatorStatistics(GetACDOperatorStatisticsRequest req) throws java.io.IOException, ClientException { + public GetDialogflowKeysResponse getDialogflowKeys(GetDialogflowKeysRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("GetACDOperatorStatistics", RequestSerializer.serialize(req)), GetACDOperatorStatisticsResponse.class); + return mapper.readValue(impl.performRequest("GetDialogflowKeys", RequestSerializer.serialize(req)), GetDialogflowKeysResponse.class); } - public GetACDQueueStatisticsResponse getACDQueueStatistics(GetACDQueueStatisticsRequest req) throws java.io.IOException, ClientException { + public GetHistoryReportsResponse getHistoryReports(GetHistoryReportsRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("GetACDQueueStatistics", RequestSerializer.serialize(req)), GetACDQueueStatisticsResponse.class); + return mapper.readValue(impl.performRequest("GetHistoryReports", RequestSerializer.serialize(req)), GetHistoryReportsResponse.class); } - public GetACDOperatorStatusStatisticsResponse getACDOperatorStatusStatistics(GetACDOperatorStatusStatisticsRequest req) throws java.io.IOException, ClientException { + public GetKeyRolesResponse getKeyRoles(GetKeyRolesRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("GetACDOperatorStatusStatistics", RequestSerializer.serialize(req)), GetACDOperatorStatusStatisticsResponse.class); + return mapper.readValue(impl.performRequest("GetKeyRoles", RequestSerializer.serialize(req)), GetKeyRolesResponse.class); } - public GetSmartQueueRealtimeMetricsResponse getSmartQueueRealtimeMetrics(GetSmartQueueRealtimeMetricsRequest req) throws java.io.IOException, ClientException { + public GetKeyValueItemResponse getKeyValueItem(GetKeyValueItemRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("GetSmartQueueRealtimeMetrics", RequestSerializer.serialize(req)), GetSmartQueueRealtimeMetricsResponse.class); + return mapper.readValue(impl.performRequest("GetKeyValueItem", RequestSerializer.serialize(req)), GetKeyValueItemResponse.class); } - public GetSmartQueueDayHistoryResponse getSmartQueueDayHistory(GetSmartQueueDayHistoryRequest req) throws java.io.IOException, ClientException { + public GetKeyValueItemsResponse getKeyValueItems(GetKeyValueItemsRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("GetSmartQueueDayHistory", RequestSerializer.serialize(req)), GetSmartQueueDayHistoryResponse.class); + return mapper.readValue(impl.performRequest("GetKeyValueItems", RequestSerializer.serialize(req)), GetKeyValueItemsResponse.class); } - public RequestSmartQueueHistoryResponse requestSmartQueueHistory(RequestSmartQueueHistoryRequest req) throws java.io.IOException, ClientException { + public GetKeyValueKeysResponse getKeyValueKeys(GetKeyValueKeysRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("RequestSmartQueueHistory", RequestSerializer.serialize(req)), RequestSmartQueueHistoryResponse.class); + return mapper.readValue(impl.performRequest("GetKeyValueKeys", RequestSerializer.serialize(req)), GetKeyValueKeysResponse.class); } - public GetSQStateResponse getSQState(GetSQStateRequest req) throws java.io.IOException, ClientException { + public GetKeysResponse getKeys(GetKeysRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("GetSQState", RequestSerializer.serialize(req)), GetSQStateResponse.class); + return mapper.readValue(impl.performRequest("GetKeys", RequestSerializer.serialize(req)), GetKeysResponse.class); } - public SQ_SetAgentCustomStatusMappingResponse sQ_SetAgentCustomStatusMapping(SQ_SetAgentCustomStatusMappingRequest req) throws java.io.IOException, ClientException { + public GetMoneyAmountToChargeResponse getMoneyAmountToCharge(GetMoneyAmountToChargeRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("SQ_SetAgentCustomStatusMapping", RequestSerializer.serialize(req)), SQ_SetAgentCustomStatusMappingResponse.class); + return mapper.readValue(impl.performRequest("GetMoneyAmountToCharge", RequestSerializer.serialize(req)), GetMoneyAmountToChargeResponse.class); } - public SQ_GetAgentCustomStatusMappingResponse sQ_GetAgentCustomStatusMapping(SQ_GetAgentCustomStatusMappingRequest req) throws java.io.IOException, ClientException { + public GetNewPhoneNumbersResponse getNewPhoneNumbers(GetNewPhoneNumbersRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("SQ_GetAgentCustomStatusMapping", RequestSerializer.serialize(req)), SQ_GetAgentCustomStatusMappingResponse.class); + return mapper.readValue(impl.performRequest("GetNewPhoneNumbers", RequestSerializer.serialize(req)), GetNewPhoneNumbersResponse.class); } - public SQ_DeleteAgentCustomStatusMappingResponse sQ_DeleteAgentCustomStatusMapping(SQ_DeleteAgentCustomStatusMappingRequest req) throws java.io.IOException, ClientException { + public GetOutboundTestPhoneNumbersResponse getOutboundTestPhoneNumbers(GetOutboundTestPhoneNumbersRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("SQ_DeleteAgentCustomStatusMapping", RequestSerializer.serialize(req)), SQ_DeleteAgentCustomStatusMappingResponse.class); + return mapper.readValue(impl.performRequest("GetOutboundTestPhoneNumbers", RequestSerializer.serialize(req)), GetOutboundTestPhoneNumbersResponse.class); } - public AddSkillResponse addSkill(AddSkillRequest req) throws java.io.IOException, ClientException { + public GetPhoneNumberCategoriesResponse getPhoneNumberCategories(GetPhoneNumberCategoriesRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("AddSkill", RequestSerializer.serialize(req)), AddSkillResponse.class); + return mapper.readValue(impl.performRequest("GetPhoneNumberCategories", RequestSerializer.serialize(req)), GetPhoneNumberCategoriesResponse.class); } - public DelSkillResponse delSkill(DelSkillRequest req) throws java.io.IOException, ClientException { + public GetPhoneNumberCountryStatesResponse getPhoneNumberCountryStates(GetPhoneNumberCountryStatesRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("DelSkill", RequestSerializer.serialize(req)), DelSkillResponse.class); + return mapper.readValue(impl.performRequest("GetPhoneNumberCountryStates", RequestSerializer.serialize(req)), GetPhoneNumberCountryStatesResponse.class); } - public SetSkillInfoResponse setSkillInfo(SetSkillInfoRequest req) throws java.io.IOException, ClientException { + public GetPhoneNumberRegionsResponse getPhoneNumberRegions(GetPhoneNumberRegionsRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("SetSkillInfo", RequestSerializer.serialize(req)), SetSkillInfoResponse.class); + return mapper.readValue(impl.performRequest("GetPhoneNumberRegions", RequestSerializer.serialize(req)), GetPhoneNumberRegionsResponse.class); } - public GetSkillsResponse getSkills(GetSkillsRequest req) throws java.io.IOException, ClientException { + public GetPhoneNumbersResponse getPhoneNumbers(GetPhoneNumbersRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("GetSkills", RequestSerializer.serialize(req)), GetSkillsResponse.class); + return mapper.readValue(impl.performRequest("GetPhoneNumbers", RequestSerializer.serialize(req)), GetPhoneNumbersResponse.class); } - public BindSkillResponse bindSkill(BindSkillRequest req) throws java.io.IOException, ClientException { + public GetPstnBlackListResponse getPstnBlackList(GetPstnBlackListRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("BindSkill", RequestSerializer.serialize(req)), BindSkillResponse.class); + return mapper.readValue(impl.performRequest("GetPstnBlackList", RequestSerializer.serialize(req)), GetPstnBlackListResponse.class); } - public GetAccountDocumentsResponse getAccountDocuments(GetAccountDocumentsRequest req) throws java.io.IOException, ClientException { + public GetPushCredentialResponse getPushCredential(GetPushCredentialRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("GetAccountDocuments", RequestSerializer.serialize(req)), GetAccountDocumentsResponse.class); + return mapper.readValue(impl.performRequest("GetPushCredential", RequestSerializer.serialize(req)), GetPushCredentialResponse.class); } - public AddAdminUserResponse addAdminUser(AddAdminUserRequest req) throws java.io.IOException, ClientException { + public GetQueuesResponse getQueues(GetQueuesRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("AddAdminUser", RequestSerializer.serialize(req)), AddAdminUserResponse.class); + return mapper.readValue(impl.performRequest("GetQueues", RequestSerializer.serialize(req)), GetQueuesResponse.class); } - public DelAdminUserResponse delAdminUser(DelAdminUserRequest req) throws java.io.IOException, ClientException { + public GetRecordStoragesResponse getRecordStorages(GetRecordStoragesRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("DelAdminUser", RequestSerializer.serialize(req)), DelAdminUserResponse.class); + return mapper.readValue(impl.performRequest("GetRecordStorages", RequestSerializer.serialize(req)), GetRecordStoragesResponse.class); } - public SetAdminUserInfoResponse setAdminUserInfo(SetAdminUserInfoRequest req) throws java.io.IOException, ClientException { + public GetRegionsResponse getRegions(GetRegionsRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("SetAdminUserInfo", RequestSerializer.serialize(req)), SetAdminUserInfoResponse.class); + return mapper.readValue(impl.performRequest("GetRegions", RequestSerializer.serialize(req)), GetRegionsResponse.class); } - public GetAdminUsersResponse getAdminUsers(GetAdminUsersRequest req) throws java.io.IOException, ClientException { + public GetRegulationsAddressResponse getRegulationsAddress(GetRegulationsAddressRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("GetAdminUsers", RequestSerializer.serialize(req)), GetAdminUsersResponse.class); + return mapper.readValue(impl.performRequest("GetRegulationsAddress", RequestSerializer.serialize(req)), GetRegulationsAddressResponse.class); } - public AddAdminRoleResponse addAdminRole(AddAdminRoleRequest req) throws java.io.IOException, ClientException { + public GetResourcePriceResponse getResourcePrice(GetResourcePriceRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("AddAdminRole", RequestSerializer.serialize(req)), AddAdminRoleResponse.class); + return mapper.readValue(impl.performRequest("GetResourcePrice", RequestSerializer.serialize(req)), GetResourcePriceResponse.class); } - public DelAdminRoleResponse delAdminRole(DelAdminRoleRequest req) throws java.io.IOException, ClientException { + public GetRoleGroupsResponse getRoleGroups(GetRoleGroupsRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("DelAdminRole", RequestSerializer.serialize(req)), DelAdminRoleResponse.class); + return mapper.readValue(impl.performRequest("GetRoleGroups", RequestSerializer.serialize(req)), GetRoleGroupsResponse.class); } - public SetAdminRoleInfoResponse setAdminRoleInfo(SetAdminRoleInfoRequest req) throws java.io.IOException, ClientException { + public GetRolesResponse getRoles(GetRolesRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("SetAdminRoleInfo", RequestSerializer.serialize(req)), SetAdminRoleInfoResponse.class); + return mapper.readValue(impl.performRequest("GetRoles", RequestSerializer.serialize(req)), GetRolesResponse.class); } - public GetAdminRolesResponse getAdminRoles(GetAdminRolesRequest req) throws java.io.IOException, ClientException { + public GetRulesResponse getRules(GetRulesRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("GetAdminRoles", RequestSerializer.serialize(req)), GetAdminRolesResponse.class); + return mapper.readValue(impl.performRequest("GetRules", RequestSerializer.serialize(req)), GetRulesResponse.class); } - public AttachAdminRoleResponse attachAdminRole(AttachAdminRoleRequest req) throws java.io.IOException, ClientException { + public GetSQStateResponse getSQState(GetSQStateRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("AttachAdminRole", RequestSerializer.serialize(req)), AttachAdminRoleResponse.class); + return mapper.readValue(impl.performRequest("GetSQState", RequestSerializer.serialize(req)), GetSQStateResponse.class); } - public GetAvailableAdminRoleEntriesResponse getAvailableAdminRoleEntries(GetAvailableAdminRoleEntriesRequest req) throws java.io.IOException, ClientException { + public GetScenariosResponse getScenarios(GetScenariosRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("GetAvailableAdminRoleEntries", RequestSerializer.serialize(req)), GetAvailableAdminRoleEntriesResponse.class); + return mapper.readValue(impl.performRequest("GetScenarios", RequestSerializer.serialize(req)), GetScenariosResponse.class); } - public AddAuthorizedAccountIPResponse addAuthorizedAccountIP(AddAuthorizedAccountIPRequest req) throws java.io.IOException, ClientException { + public GetSipRegistrationsResponse getSipRegistrations(GetSipRegistrationsRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("AddAuthorizedAccountIP", RequestSerializer.serialize(req)), AddAuthorizedAccountIPResponse.class); + return mapper.readValue(impl.performRequest("GetSipRegistrations", RequestSerializer.serialize(req)), GetSipRegistrationsResponse.class); } - public DelAuthorizedAccountIPResponse delAuthorizedAccountIP(DelAuthorizedAccountIPRequest req) throws java.io.IOException, ClientException { + public GetSipWhiteListResponse getSipWhiteList(GetSipWhiteListRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("DelAuthorizedAccountIP", RequestSerializer.serialize(req)), DelAuthorizedAccountIPResponse.class); + return mapper.readValue(impl.performRequest("GetSipWhiteList", RequestSerializer.serialize(req)), GetSipWhiteListResponse.class); } - public GetAuthorizedAccountIPsResponse getAuthorizedAccountIPs(GetAuthorizedAccountIPsRequest req) throws java.io.IOException, ClientException { + public GetSkillsResponse getSkills(GetSkillsRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("GetAuthorizedAccountIPs", RequestSerializer.serialize(req)), GetAuthorizedAccountIPsResponse.class); + return mapper.readValue(impl.performRequest("GetSkills", RequestSerializer.serialize(req)), GetSkillsResponse.class); } - public CheckAuthorizedAccountIPResponse checkAuthorizedAccountIP(CheckAuthorizedAccountIPRequest req) throws java.io.IOException, ClientException { + public GetSmartQueueDayHistoryResponse getSmartQueueDayHistory(GetSmartQueueDayHistoryRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("CheckAuthorizedAccountIP", RequestSerializer.serialize(req)), CheckAuthorizedAccountIPResponse.class); + return mapper.readValue(impl.performRequest("GetSmartQueueDayHistory", RequestSerializer.serialize(req)), GetSmartQueueDayHistoryResponse.class); } - public LinkRegulationAddressResponse linkRegulationAddress(LinkRegulationAddressRequest req) throws java.io.IOException, ClientException { + public GetSmartQueueRealtimeMetricsResponse getSmartQueueRealtimeMetrics(GetSmartQueueRealtimeMetricsRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("LinkRegulationAddress", RequestSerializer.serialize(req)), LinkRegulationAddressResponse.class); + return mapper.readValue(impl.performRequest("GetSmartQueueRealtimeMetrics", RequestSerializer.serialize(req)), GetSmartQueueRealtimeMetricsResponse.class); } - public GetZIPCodesResponse getZIPCodes(GetZIPCodesRequest req) throws java.io.IOException, ClientException { + public GetSmsHistoryResponse getSmsHistory(GetSmsHistoryRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("GetZIPCodes", RequestSerializer.serialize(req)), GetZIPCodesResponse.class); + return mapper.readValue(impl.performRequest("GetSmsHistory", RequestSerializer.serialize(req)), GetSmsHistoryResponse.class); } - public GetRegulationsAddressResponse getRegulationsAddress(GetRegulationsAddressRequest req) throws java.io.IOException, ClientException { + public GetSubUserRolesResponse getSubUserRoles(GetSubUserRolesRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("GetRegulationsAddress", RequestSerializer.serialize(req)), GetRegulationsAddressResponse.class); + return mapper.readValue(impl.performRequest("GetSubUserRoles", RequestSerializer.serialize(req)), GetSubUserRolesResponse.class); } - public GetAvailableRegulationsResponse getAvailableRegulations(GetAvailableRegulationsRequest req) throws java.io.IOException, ClientException { + public GetSubUsersResponse getSubUsers(GetSubUsersRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("GetAvailableRegulations", RequestSerializer.serialize(req)), GetAvailableRegulationsResponse.class); + return mapper.readValue(impl.performRequest("GetSubUsers", RequestSerializer.serialize(req)), GetSubUsersResponse.class); } - public GetCountriesResponse getCountries(GetCountriesRequest req) throws java.io.IOException, ClientException { + public GetSubscriptionPriceResponse getSubscriptionPrice(GetSubscriptionPriceRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("GetCountries", RequestSerializer.serialize(req)), GetCountriesResponse.class); + return mapper.readValue(impl.performRequest("GetSubscriptionPrice", RequestSerializer.serialize(req)), GetSubscriptionPriceResponse.class); } - public GetAccountPhoneNumberCountriesResponse getAccountPhoneNumberCountries(GetAccountPhoneNumberCountriesRequest req) throws java.io.IOException, ClientException { + public GetTransactionHistoryResponse getTransactionHistory(GetTransactionHistoryRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("GetAccountPhoneNumberCountries", RequestSerializer.serialize(req)), GetAccountPhoneNumberCountriesResponse.class); + return mapper.readValue(impl.performRequest("GetTransactionHistory", RequestSerializer.serialize(req)), GetTransactionHistoryResponse.class); } - public GetRegionsResponse getRegions(GetRegionsRequest req) throws java.io.IOException, ClientException { + public GetUsersResponse getUsers(GetUsersRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("GetRegions", RequestSerializer.serialize(req)), GetRegionsResponse.class); + return mapper.readValue(impl.performRequest("GetUsers", RequestSerializer.serialize(req)), GetUsersResponse.class); } - public AddPushCredentialResponse addPushCredential(AddPushCredentialRequest req) throws java.io.IOException, ClientException { + public GetZIPCodesResponse getZIPCodes(GetZIPCodesRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("AddPushCredential", RequestSerializer.serialize(req)), AddPushCredentialResponse.class); + return mapper.readValue(impl.performRequest("GetZIPCodes", RequestSerializer.serialize(req)), GetZIPCodesResponse.class); } - public SetPushCredentialResponse setPushCredential(SetPushCredentialRequest req) throws java.io.IOException, ClientException { + public LinkRegulationAddressResponse linkRegulationAddress(LinkRegulationAddressRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("SetPushCredential", RequestSerializer.serialize(req)), SetPushCredentialResponse.class); + return mapper.readValue(impl.performRequest("LinkRegulationAddress", RequestSerializer.serialize(req)), LinkRegulationAddressResponse.class); } - public DelPushCredentialResponse delPushCredential(DelPushCredentialRequest req) throws java.io.IOException, ClientException { + public RecoverCallListResponse recoverCallList(RecoverCallListRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("DelPushCredential", RequestSerializer.serialize(req)), DelPushCredentialResponse.class); + return mapper.readValue(impl.performRequest("RecoverCallList", RequestSerializer.serialize(req)), RecoverCallListResponse.class); } - public GetPushCredentialResponse getPushCredential(GetPushCredentialRequest req) throws java.io.IOException, ClientException { + public RemoveKeyRolesResponse removeKeyRoles(RemoveKeyRolesRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("GetPushCredential", RequestSerializer.serialize(req)), GetPushCredentialResponse.class); + return mapper.readValue(impl.performRequest("RemoveKeyRoles", RequestSerializer.serialize(req)), RemoveKeyRolesResponse.class); } - public BindPushCredentialResponse bindPushCredential(BindPushCredentialRequest req) throws java.io.IOException, ClientException { + public RemoveSubUserRolesResponse removeSubUserRoles(RemoveSubUserRolesRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("BindPushCredential", RequestSerializer.serialize(req)), BindPushCredentialResponse.class); + return mapper.readValue(impl.performRequest("RemoveSubUserRoles", RequestSerializer.serialize(req)), RemoveSubUserRolesResponse.class); } - public AddDialogflowKeyResponse addDialogflowKey(AddDialogflowKeyRequest req) throws java.io.IOException, ClientException { + public ReorderRulesResponse reorderRules(ReorderRulesRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("AddDialogflowKey", RequestSerializer.serialize(req)), AddDialogflowKeyResponse.class); + return mapper.readValue(impl.performRequest("ReorderRules", RequestSerializer.serialize(req)), ReorderRulesResponse.class); } - public SetDialogflowKeyResponse setDialogflowKey(SetDialogflowKeyRequest req) throws java.io.IOException, ClientException { + public ReorderScenariosResponse reorderScenarios(ReorderScenariosRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("SetDialogflowKey", RequestSerializer.serialize(req)), SetDialogflowKeyResponse.class); + return mapper.readValue(impl.performRequest("ReorderScenarios", RequestSerializer.serialize(req)), ReorderScenariosResponse.class); } - public DelDialogflowKeyResponse delDialogflowKey(DelDialogflowKeyRequest req) throws java.io.IOException, ClientException { + public RequestSmartQueueHistoryResponse requestSmartQueueHistory(RequestSmartQueueHistoryRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("DelDialogflowKey", RequestSerializer.serialize(req)), DelDialogflowKeyResponse.class); + return mapper.readValue(impl.performRequest("RequestSmartQueueHistory", RequestSerializer.serialize(req)), RequestSmartQueueHistoryResponse.class); } - public GetDialogflowKeysResponse getDialogflowKeys(GetDialogflowKeysRequest req) throws java.io.IOException, ClientException { + public SQ_AddQueueResponse sQ_AddQueue(SQ_AddQueueRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("GetDialogflowKeys", RequestSerializer.serialize(req)), GetDialogflowKeysResponse.class); + return mapper.readValue(impl.performRequest("SQ_AddQueue", RequestSerializer.serialize(req)), SQ_AddQueueResponse.class); } - public BindDialogflowKeysResponse bindDialogflowKeys(BindDialogflowKeysRequest req) throws java.io.IOException, ClientException { + public SQ_AddSkillResponse sQ_AddSkill(SQ_AddSkillRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("BindDialogflowKeys", RequestSerializer.serialize(req)), BindDialogflowKeysResponse.class); + return mapper.readValue(impl.performRequest("SQ_AddSkill", RequestSerializer.serialize(req)), SQ_AddSkillResponse.class); } - public SendSmsMessageResponse sendSmsMessage(SendSmsMessageRequest req) throws java.io.IOException, ClientException { + public SQ_BindAgentResponse sQ_BindAgent(SQ_BindAgentRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("SendSmsMessage", RequestSerializer.serialize(req)), SendSmsMessageResponse.class); + return mapper.readValue(impl.performRequest("SQ_BindAgent", RequestSerializer.serialize(req)), SQ_BindAgentResponse.class); } - public A2PSendSmsResponse a2PSendSms(A2PSendSmsRequest req) throws java.io.IOException, ClientException { + public SQ_BindSkillResponse sQ_BindSkill(SQ_BindSkillRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("A2PSendSms", RequestSerializer.serialize(req)), A2PSendSmsResponse.class); + return mapper.readValue(impl.performRequest("SQ_BindSkill", RequestSerializer.serialize(req)), SQ_BindSkillResponse.class); } - public ControlSmsResponse controlSms(ControlSmsRequest req) throws java.io.IOException, ClientException { + public SQ_DelQueueResponse sQ_DelQueue(SQ_DelQueueRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("ControlSms", RequestSerializer.serialize(req)), ControlSmsResponse.class); + return mapper.readValue(impl.performRequest("SQ_DelQueue", RequestSerializer.serialize(req)), SQ_DelQueueResponse.class); } - public GetRecordStoragesResponse getRecordStorages(GetRecordStoragesRequest req) throws java.io.IOException, ClientException { + public SQ_DelSkillResponse sQ_DelSkill(SQ_DelSkillRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("GetRecordStorages", RequestSerializer.serialize(req)), GetRecordStoragesResponse.class); + return mapper.readValue(impl.performRequest("SQ_DelSkill", RequestSerializer.serialize(req)), SQ_DelSkillResponse.class); } - public CreateKeyResponse createKey(CreateKeyRequest req) throws java.io.IOException, ClientException { + public SQ_DeleteAgentCustomStatusMappingResponse sQ_DeleteAgentCustomStatusMapping(SQ_DeleteAgentCustomStatusMappingRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("CreateKey", RequestSerializer.serialize(req)), CreateKeyResponse.class); + return mapper.readValue(impl.performRequest("SQ_DeleteAgentCustomStatusMapping", RequestSerializer.serialize(req)), SQ_DeleteAgentCustomStatusMappingResponse.class); } - public GetKeysResponse getKeys(GetKeysRequest req) throws java.io.IOException, ClientException { + public SQ_GetAgentCustomStatusMappingResponse sQ_GetAgentCustomStatusMapping(SQ_GetAgentCustomStatusMappingRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("GetKeys", RequestSerializer.serialize(req)), GetKeysResponse.class); + return mapper.readValue(impl.performRequest("SQ_GetAgentCustomStatusMapping", RequestSerializer.serialize(req)), SQ_GetAgentCustomStatusMappingResponse.class); } - public UpdateKeyResponse updateKey(UpdateKeyRequest req) throws java.io.IOException, ClientException { + public SQ_GetAgentsResponse sQ_GetAgents(SQ_GetAgentsRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("UpdateKey", RequestSerializer.serialize(req)), UpdateKeyResponse.class); + return mapper.readValue(impl.performRequest("SQ_GetAgents", RequestSerializer.serialize(req)), SQ_GetAgentsResponse.class); } - public DeleteKeyResponse deleteKey(DeleteKeyRequest req) throws java.io.IOException, ClientException { + public SQ_GetQueuesResponse sQ_GetQueues(SQ_GetQueuesRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("DeleteKey", RequestSerializer.serialize(req)), DeleteKeyResponse.class); + return mapper.readValue(impl.performRequest("SQ_GetQueues", RequestSerializer.serialize(req)), SQ_GetQueuesResponse.class); } - public SetKeyRolesResponse setKeyRoles(SetKeyRolesRequest req) throws java.io.IOException, ClientException { + public SQ_GetSkillsResponse sQ_GetSkills(SQ_GetSkillsRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("SetKeyRoles", RequestSerializer.serialize(req)), SetKeyRolesResponse.class); + return mapper.readValue(impl.performRequest("SQ_GetSkills", RequestSerializer.serialize(req)), SQ_GetSkillsResponse.class); } - public GetKeyRolesResponse getKeyRoles(GetKeyRolesRequest req) throws java.io.IOException, ClientException { + public SQ_SetAgentCustomStatusMappingResponse sQ_SetAgentCustomStatusMapping(SQ_SetAgentCustomStatusMappingRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("GetKeyRoles", RequestSerializer.serialize(req)), GetKeyRolesResponse.class); + return mapper.readValue(impl.performRequest("SQ_SetAgentCustomStatusMapping", RequestSerializer.serialize(req)), SQ_SetAgentCustomStatusMappingResponse.class); } - public RemoveKeyRolesResponse removeKeyRoles(RemoveKeyRolesRequest req) throws java.io.IOException, ClientException { + public SQ_SetAgentInfoResponse sQ_SetAgentInfo(SQ_SetAgentInfoRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("RemoveKeyRoles", RequestSerializer.serialize(req)), RemoveKeyRolesResponse.class); + return mapper.readValue(impl.performRequest("SQ_SetAgentInfo", RequestSerializer.serialize(req)), SQ_SetAgentInfoResponse.class); } - public AddSubUserResponse addSubUser(AddSubUserRequest req) throws java.io.IOException, ClientException { + public SQ_SetQueueInfoResponse sQ_SetQueueInfo(SQ_SetQueueInfoRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("AddSubUser", RequestSerializer.serialize(req)), AddSubUserResponse.class); + return mapper.readValue(impl.performRequest("SQ_SetQueueInfo", RequestSerializer.serialize(req)), SQ_SetQueueInfoResponse.class); } - public GetSubUsersResponse getSubUsers(GetSubUsersRequest req) throws java.io.IOException, ClientException { + public SQ_SetSkillInfoResponse sQ_SetSkillInfo(SQ_SetSkillInfoRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("GetSubUsers", RequestSerializer.serialize(req)), GetSubUsersResponse.class); + return mapper.readValue(impl.performRequest("SQ_SetSkillInfo", RequestSerializer.serialize(req)), SQ_SetSkillInfoResponse.class); } - public SetSubUserInfoResponse setSubUserInfo(SetSubUserInfoRequest req) throws java.io.IOException, ClientException { + public SQ_UnbindAgentResponse sQ_UnbindAgent(SQ_UnbindAgentRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("SetSubUserInfo", RequestSerializer.serialize(req)), SetSubUserInfoResponse.class); + return mapper.readValue(impl.performRequest("SQ_UnbindAgent", RequestSerializer.serialize(req)), SQ_UnbindAgentResponse.class); } - public DelSubUserResponse delSubUser(DelSubUserRequest req) throws java.io.IOException, ClientException { + public SQ_UnbindSkillResponse sQ_UnbindSkill(SQ_UnbindSkillRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("DelSubUser", RequestSerializer.serialize(req)), DelSubUserResponse.class); + return mapper.readValue(impl.performRequest("SQ_UnbindSkill", RequestSerializer.serialize(req)), SQ_UnbindSkillResponse.class); } - public SetSubUserRolesResponse setSubUserRoles(SetSubUserRolesRequest req) throws java.io.IOException, ClientException { + public SendSmsMessageResponse sendSmsMessage(SendSmsMessageRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("SetSubUserRoles", RequestSerializer.serialize(req)), SetSubUserRolesResponse.class); + return mapper.readValue(impl.performRequest("SendSmsMessage", RequestSerializer.serialize(req)), SendSmsMessageResponse.class); } - public GetSubUserRolesResponse getSubUserRoles(GetSubUserRolesRequest req) throws java.io.IOException, ClientException { + public SetAccountInfoResponse setAccountInfo(SetAccountInfoRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("GetSubUserRoles", RequestSerializer.serialize(req)), GetSubUserRolesResponse.class); + return mapper.readValue(impl.performRequest("SetAccountInfo", RequestSerializer.serialize(req)), SetAccountInfoResponse.class); } - public RemoveSubUserRolesResponse removeSubUserRoles(RemoveSubUserRolesRequest req) throws java.io.IOException, ClientException { + public SetAdminRoleInfoResponse setAdminRoleInfo(SetAdminRoleInfoRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("RemoveSubUserRoles", RequestSerializer.serialize(req)), RemoveSubUserRolesResponse.class); + return mapper.readValue(impl.performRequest("SetAdminRoleInfo", RequestSerializer.serialize(req)), SetAdminRoleInfoResponse.class); } - public GetRolesResponse getRoles(GetRolesRequest req) throws java.io.IOException, ClientException { + public SetAdminUserInfoResponse setAdminUserInfo(SetAdminUserInfoRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("GetRoles", RequestSerializer.serialize(req)), GetRolesResponse.class); + return mapper.readValue(impl.performRequest("SetAdminUserInfo", RequestSerializer.serialize(req)), SetAdminUserInfoResponse.class); } - public GetRoleGroupsResponse getRoleGroups(GetRoleGroupsRequest req) throws java.io.IOException, ClientException { + public SetApplicationInfoResponse setApplicationInfo(SetApplicationInfoRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("GetRoleGroups", RequestSerializer.serialize(req)), GetRoleGroupsResponse.class); + return mapper.readValue(impl.performRequest("SetApplicationInfo", RequestSerializer.serialize(req)), SetApplicationInfoResponse.class); } - public SetKeyValueItemResponse setKeyValueItem(SetKeyValueItemRequest req) throws java.io.IOException, ClientException { + public SetChildAccountInfoResponse setChildAccountInfo(SetChildAccountInfoRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("SetKeyValueItem", RequestSerializer.serialize(req)), SetKeyValueItemResponse.class); + return mapper.readValue(impl.performRequest("SetChildAccountInfo", RequestSerializer.serialize(req)), SetChildAccountInfoResponse.class); } - public DelKeyValueItemResponse delKeyValueItem(DelKeyValueItemRequest req) throws java.io.IOException, ClientException { + public SetDialogflowKeyResponse setDialogflowKey(SetDialogflowKeyRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("DelKeyValueItem", RequestSerializer.serialize(req)), DelKeyValueItemResponse.class); + return mapper.readValue(impl.performRequest("SetDialogflowKey", RequestSerializer.serialize(req)), SetDialogflowKeyResponse.class); } - public GetKeyValueItemResponse getKeyValueItem(GetKeyValueItemRequest req) throws java.io.IOException, ClientException { + public SetKeyRolesResponse setKeyRoles(SetKeyRolesRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("GetKeyValueItem", RequestSerializer.serialize(req)), GetKeyValueItemResponse.class); + return mapper.readValue(impl.performRequest("SetKeyRoles", RequestSerializer.serialize(req)), SetKeyRolesResponse.class); } - public GetKeyValueItemsResponse getKeyValueItems(GetKeyValueItemsRequest req) throws java.io.IOException, ClientException { + public SetKeyValueItemResponse setKeyValueItem(SetKeyValueItemRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("GetKeyValueItems", RequestSerializer.serialize(req)), GetKeyValueItemsResponse.class); + return mapper.readValue(impl.performRequest("SetKeyValueItem", RequestSerializer.serialize(req)), SetKeyValueItemResponse.class); } - public GetKeyValueKeysResponse getKeyValueKeys(GetKeyValueKeysRequest req) throws java.io.IOException, ClientException { + public SetPhoneNumberInfoResponse setPhoneNumberInfo(SetPhoneNumberInfoRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("GetKeyValueKeys", RequestSerializer.serialize(req)), GetKeyValueKeysResponse.class); + return mapper.readValue(impl.performRequest("SetPhoneNumberInfo", RequestSerializer.serialize(req)), SetPhoneNumberInfoResponse.class); } - public GetAccountInvoicesResponse getAccountInvoices(GetAccountInvoicesRequest req) throws java.io.IOException, ClientException { + public SetPstnBlackListItemResponse setPstnBlackListItem(SetPstnBlackListItemRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("GetAccountInvoices", RequestSerializer.serialize(req)), GetAccountInvoicesResponse.class); + return mapper.readValue(impl.performRequest("SetPstnBlackListItem", RequestSerializer.serialize(req)), SetPstnBlackListItemResponse.class); } - public GetSmsHistoryResponse getSmsHistory(GetSmsHistoryRequest req) throws java.io.IOException, ClientException { + public SetPushCredentialResponse setPushCredential(SetPushCredentialRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("GetSmsHistory", RequestSerializer.serialize(req)), GetSmsHistoryResponse.class); + return mapper.readValue(impl.performRequest("SetPushCredential", RequestSerializer.serialize(req)), SetPushCredentialResponse.class); } - public A2PGetSmsHistoryResponse a2PGetSmsHistory(A2PGetSmsHistoryRequest req) throws java.io.IOException, ClientException { + public SetQueueInfoResponse setQueueInfo(SetQueueInfoRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("A2PGetSmsHistory", RequestSerializer.serialize(req)), A2PGetSmsHistoryResponse.class); + return mapper.readValue(impl.performRequest("SetQueueInfo", RequestSerializer.serialize(req)), SetQueueInfoResponse.class); } - public SQ_AddQueueResponse sQ_AddQueue(SQ_AddQueueRequest req) throws java.io.IOException, ClientException { + public SetRuleInfoResponse setRuleInfo(SetRuleInfoRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("SQ_AddQueue", RequestSerializer.serialize(req)), SQ_AddQueueResponse.class); + return mapper.readValue(impl.performRequest("SetRuleInfo", RequestSerializer.serialize(req)), SetRuleInfoResponse.class); } - public SQ_SetQueueInfoResponse sQ_SetQueueInfo(SQ_SetQueueInfoRequest req) throws java.io.IOException, ClientException { + public SetScenarioInfoResponse setScenarioInfo(SetScenarioInfoRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("SQ_SetQueueInfo", RequestSerializer.serialize(req)), SQ_SetQueueInfoResponse.class); + return mapper.readValue(impl.performRequest("SetScenarioInfo", RequestSerializer.serialize(req)), SetScenarioInfoResponse.class); } - public SQ_DelQueueResponse sQ_DelQueue(SQ_DelQueueRequest req) throws java.io.IOException, ClientException { + public SetSipWhiteListItemResponse setSipWhiteListItem(SetSipWhiteListItemRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("SQ_DelQueue", RequestSerializer.serialize(req)), SQ_DelQueueResponse.class); + return mapper.readValue(impl.performRequest("SetSipWhiteListItem", RequestSerializer.serialize(req)), SetSipWhiteListItemResponse.class); } - public SQ_GetQueuesResponse sQ_GetQueues(SQ_GetQueuesRequest req) throws java.io.IOException, ClientException { + public SetSkillInfoResponse setSkillInfo(SetSkillInfoRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("SQ_GetQueues", RequestSerializer.serialize(req)), SQ_GetQueuesResponse.class); + return mapper.readValue(impl.performRequest("SetSkillInfo", RequestSerializer.serialize(req)), SetSkillInfoResponse.class); } - public SQ_AddSkillResponse sQ_AddSkill(SQ_AddSkillRequest req) throws java.io.IOException, ClientException { + public SetSubUserInfoResponse setSubUserInfo(SetSubUserInfoRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("SQ_AddSkill", RequestSerializer.serialize(req)), SQ_AddSkillResponse.class); + return mapper.readValue(impl.performRequest("SetSubUserInfo", RequestSerializer.serialize(req)), SetSubUserInfoResponse.class); } - public SQ_DelSkillResponse sQ_DelSkill(SQ_DelSkillRequest req) throws java.io.IOException, ClientException { + public SetSubUserRolesResponse setSubUserRoles(SetSubUserRolesRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("SQ_DelSkill", RequestSerializer.serialize(req)), SQ_DelSkillResponse.class); + return mapper.readValue(impl.performRequest("SetSubUserRoles", RequestSerializer.serialize(req)), SetSubUserRolesResponse.class); } - public SQ_SetSkillInfoResponse sQ_SetSkillInfo(SQ_SetSkillInfoRequest req) throws java.io.IOException, ClientException { + public SetUserInfoResponse setUserInfo(SetUserInfoRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("SQ_SetSkillInfo", RequestSerializer.serialize(req)), SQ_SetSkillInfoResponse.class); + return mapper.readValue(impl.performRequest("SetUserInfo", RequestSerializer.serialize(req)), SetUserInfoResponse.class); } - public SQ_BindSkillResponse sQ_BindSkill(SQ_BindSkillRequest req) throws java.io.IOException, ClientException { + public StartConferenceResponse startConference(StartConferenceRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("SQ_BindSkill", RequestSerializer.serialize(req)), SQ_BindSkillResponse.class); + return mapper.readValue(impl.performRequest("StartConference", RequestSerializer.serialize(req)), StartConferenceResponse.class); } - public SQ_UnbindSkillResponse sQ_UnbindSkill(SQ_UnbindSkillRequest req) throws java.io.IOException, ClientException { + public StartScenariosResponse startScenarios(StartScenariosRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("SQ_UnbindSkill", RequestSerializer.serialize(req)), SQ_UnbindSkillResponse.class); + return mapper.readValue(impl.performRequest("StartScenarios", RequestSerializer.serialize(req)), StartScenariosResponse.class); } - public SQ_GetSkillsResponse sQ_GetSkills(SQ_GetSkillsRequest req) throws java.io.IOException, ClientException { + public StopCallListProcessingResponse stopCallListProcessing(StopCallListProcessingRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("SQ_GetSkills", RequestSerializer.serialize(req)), SQ_GetSkillsResponse.class); + return mapper.readValue(impl.performRequest("StopCallListProcessing", RequestSerializer.serialize(req)), StopCallListProcessingResponse.class); } - public SQ_BindAgentResponse sQ_BindAgent(SQ_BindAgentRequest req) throws java.io.IOException, ClientException { + public TransferMoneyToUserResponse transferMoneyToUser(TransferMoneyToUserRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("SQ_BindAgent", RequestSerializer.serialize(req)), SQ_BindAgentResponse.class); + return mapper.readValue(impl.performRequest("TransferMoneyToUser", RequestSerializer.serialize(req)), TransferMoneyToUserResponse.class); } - public SQ_UnbindAgentResponse sQ_UnbindAgent(SQ_UnbindAgentRequest req) throws java.io.IOException, ClientException { + public UpdateKeyResponse updateKey(UpdateKeyRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("SQ_UnbindAgent", RequestSerializer.serialize(req)), SQ_UnbindAgentResponse.class); + return mapper.readValue(impl.performRequest("UpdateKey", RequestSerializer.serialize(req)), UpdateKeyResponse.class); } - public SQ_GetAgentsResponse sQ_GetAgents(SQ_GetAgentsRequest req) throws java.io.IOException, ClientException { + public UpdateSipRegistrationResponse updateSipRegistration(UpdateSipRegistrationRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("SQ_GetAgents", RequestSerializer.serialize(req)), SQ_GetAgentsResponse.class); + return mapper.readValue(impl.performRequest("UpdateSipRegistration", RequestSerializer.serialize(req)), UpdateSipRegistrationResponse.class); } - public SQ_SetAgentInfoResponse sQ_SetAgentInfo(SQ_SetAgentInfoRequest req) throws java.io.IOException, ClientException { + public VerifyCallerIDResponse verifyCallerID(VerifyCallerIDRequest req) throws java.io.IOException, ClientException { ObjectMapper mapper = new ObjectMapper(); mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); - return mapper.readValue(impl.performRequest("SQ_SetAgentInfo", RequestSerializer.serialize(req)), SQ_SetAgentInfoResponse.class); + return mapper.readValue(impl.performRequest("VerifyCallerID", RequestSerializer.serialize(req)), VerifyCallerIDResponse.class); + } + + public VerifyOutboundTestPhoneNumberResponse verifyOutboundTestPhoneNumber(VerifyOutboundTestPhoneNumberRequest req) throws java.io.IOException, ClientException { + ObjectMapper mapper = new ObjectMapper(); + mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); + mapper.setPropertyNamingStrategy(PropertyNamingStrategy.SNAKE_CASE); + return mapper.readValue(impl.performRequest("VerifyOutboundTestPhoneNumber", RequestSerializer.serialize(req)), VerifyOutboundTestPhoneNumberResponse.class); } } \ No newline at end of file diff --git a/src/main/java/com/voximplant/apiclient/request/AddPushCredentialRequest.java b/src/main/java/com/voximplant/apiclient/request/AddPushCredentialRequest.java index 164eef6..749cf8e 100644 --- a/src/main/java/com/voximplant/apiclient/request/AddPushCredentialRequest.java +++ b/src/main/java/com/voximplant/apiclient/request/AddPushCredentialRequest.java @@ -43,7 +43,9 @@ public AddPushCredentialRequest setPushProviderName(String d) { @RequestField(name="push_provider_id") /** - * The push provider id. Can be used instead of push_provider_name + * The push provider id. Can be used instead of + * push_provider_name. The possible values are: 1 — APPLE, 2 — + * GOOGLE, 3 — APPLE_VOIP, 5 — HUAWEI. */ public Long getPushProviderId() { return this.pushProviderId; @@ -54,7 +56,9 @@ public boolean hasPushProviderId() { } /** - * The push provider id. Can be used instead of push_provider_name + * The push provider id. Can be used instead of + * push_provider_name. The possible values are: 1 — APPLE, 2 — + * GOOGLE, 3 — APPLE_VOIP, 5 — HUAWEI. */ public AddPushCredentialRequest setPushProviderId(long d) { this.pushProviderId = Long.valueOf(d); diff --git a/src/main/java/com/voximplant/apiclient/request/AddRuleRequest.java b/src/main/java/com/voximplant/apiclient/request/AddRuleRequest.java index 11f61f1..1a9658b 100644 --- a/src/main/java/com/voximplant/apiclient/request/AddRuleRequest.java +++ b/src/main/java/com/voximplant/apiclient/request/AddRuleRequest.java @@ -147,6 +147,30 @@ public AddRuleRequest setVideoConference(boolean d) { return this; } + private String bindKeyId; + + @RequestField(name="bind_key_id") + /** + * The service account ID to bind to the rule. Read more in the + * [guide](/docs/guides/voxengine/management-api) + */ + public String getBindKeyId() { + return this.bindKeyId; + } + + public boolean hasBindKeyId() { + return this.bindKeyId != null; + } + + /** + * The service account ID to bind to the rule. Read more in the + * [guide](/docs/guides/voxengine/management-api) + */ + public AddRuleRequest setBindKeyId(String d) { + this.bindKeyId = d; + return this; + } + private MultiArgument scenarioId; @RequestField(name="scenario_id") @@ -250,6 +274,14 @@ public String toString(int alignment) { .append(',') .append(System.lineSeparator()); } + if (bindKeyId != null) { + sb.append(aligned) + .append("\"bindKeyId\": \"") + .append(bindKeyId) + .append('"') + .append(',') + .append(System.lineSeparator()); + } if (scenarioId != null) { sb.append(aligned) .append("\"scenarioId\": \"") diff --git a/src/main/java/com/voximplant/apiclient/request/GetPushCredentialRequest.java b/src/main/java/com/voximplant/apiclient/request/GetPushCredentialRequest.java index 410e6f9..c6763e2 100644 --- a/src/main/java/com/voximplant/apiclient/request/GetPushCredentialRequest.java +++ b/src/main/java/com/voximplant/apiclient/request/GetPushCredentialRequest.java @@ -65,7 +65,9 @@ public GetPushCredentialRequest setPushProviderName(String d) { @RequestField(name="push_provider_id") /** - * The push provider id. Can be used instead of push_provider_name + * The push provider id. Can be used instead of + * push_provider_name. The possible values are: 1 — APPLE, 2 — + * GOOGLE, 3 — APPLE_VOIP, 5 — HUAWEI. */ public Long getPushProviderId() { return this.pushProviderId; @@ -76,7 +78,9 @@ public boolean hasPushProviderId() { } /** - * The push provider id. Can be used instead of push_provider_name + * The push provider id. Can be used instead of + * push_provider_name. The possible values are: 1 — APPLE, 2 — + * GOOGLE, 3 — APPLE_VOIP, 5 — HUAWEI. */ public GetPushCredentialRequest setPushProviderId(long d) { this.pushProviderId = Long.valueOf(d); diff --git a/src/main/java/com/voximplant/apiclient/request/GetRulesRequest.java b/src/main/java/com/voximplant/apiclient/request/GetRulesRequest.java index 3db8498..dc7c4b4 100644 --- a/src/main/java/com/voximplant/apiclient/request/GetRulesRequest.java +++ b/src/main/java/com/voximplant/apiclient/request/GetRulesRequest.java @@ -125,6 +125,30 @@ public GetRulesRequest setVideoConference(boolean d) { return this; } + private String attachedKeyId; + + @RequestField(name="attached_key_id") + /** + * The service account ID bound to the rule. Read more in the + * [guide](/docs/guides/voxengine/management-api) + */ + public String getAttachedKeyId() { + return this.attachedKeyId; + } + + public boolean hasAttachedKeyId() { + return this.attachedKeyId != null; + } + + /** + * The service account ID bound to the rule. Read more in the + * [guide](/docs/guides/voxengine/management-api) + */ + public GetRulesRequest setAttachedKeyId(String d) { + this.attachedKeyId = d; + return this; + } + private String template; @RequestField(name="template") @@ -262,6 +286,14 @@ public String toString(int alignment) { .append(',') .append(System.lineSeparator()); } + if (attachedKeyId != null) { + sb.append(aligned) + .append("\"attachedKeyId\": \"") + .append(attachedKeyId) + .append('"') + .append(',') + .append(System.lineSeparator()); + } if (template != null) { sb.append(aligned) .append("\"template\": \"") diff --git a/src/main/java/com/voximplant/apiclient/request/SetRuleInfoRequest.java b/src/main/java/com/voximplant/apiclient/request/SetRuleInfoRequest.java index 4dff963..cc2b13d 100644 --- a/src/main/java/com/voximplant/apiclient/request/SetRuleInfoRequest.java +++ b/src/main/java/com/voximplant/apiclient/request/SetRuleInfoRequest.java @@ -125,6 +125,30 @@ public SetRuleInfoRequest setVideoConference(boolean d) { return this; } + private String bindKeyId; + + @RequestField(name="bind_key_id") + /** + * The service account ID to bind to the rule. Read more in the + * [guide](/docs/guides/voxengine/management-api) + */ + public String getBindKeyId() { + return this.bindKeyId; + } + + public boolean hasBindKeyId() { + return this.bindKeyId != null; + } + + /** + * The service account ID to bind to the rule. Read more in the + * [guide](/docs/guides/voxengine/management-api) + */ + public SetRuleInfoRequest setBindKeyId(String d) { + this.bindKeyId = d; + return this; + } + public String toString(int alignment) { char[] preAligned = new char[alignment - 1]; char[] aligned = new char[alignment]; @@ -174,6 +198,14 @@ public String toString(int alignment) { .append(',') .append(System.lineSeparator()); } + if (bindKeyId != null) { + sb.append(aligned) + .append("\"bindKeyId\": \"") + .append(bindKeyId) + .append('"') + .append(',') + .append(System.lineSeparator()); + } return sb.append(preAligned).append('}').append(',').toString(); } diff --git a/src/main/java/com/voximplant/apiclient/response/CallListDetailType.java b/src/main/java/com/voximplant/apiclient/response/CallListDetailType.java index 4029f0c..d99c492 100644 --- a/src/main/java/com/voximplant/apiclient/response/CallListDetailType.java +++ b/src/main/java/com/voximplant/apiclient/response/CallListDetailType.java @@ -139,6 +139,32 @@ public boolean hasStatus() { return this.status != null; } + private Long taskId; + + /** + * The call list task ID + */ + public Long getTaskId() { + return this.taskId; + } + + public boolean hasTaskId() { + return this.taskId != null; + } + + private String taskUuid; + + /** + * The call list task UUID + */ + public String getTaskUuid() { + return this.taskUuid; + } + + public boolean hasTaskUuid() { + return this.taskUuid != null; + } + public String toString(int alignment) { char[] preAligned = new char[alignment - 1]; char[] aligned = new char[alignment]; @@ -220,6 +246,22 @@ public String toString(int alignment) { .append(',') .append(System.lineSeparator()); } + if (taskId != null) { + sb.append(aligned) + .append("\"taskId\": \"") + .append(taskId) + .append('"') + .append(',') + .append(System.lineSeparator()); + } + if (taskUuid != null) { + sb.append(aligned) + .append("\"taskUuid\": \"") + .append(taskUuid) + .append('"') + .append(',') + .append(System.lineSeparator()); + } return sb.append(preAligned).append('}').append(',').toString(); }