Skip to content

Commit

Permalink
Version 1.4.0 released
Browse files Browse the repository at this point in the history
  • Loading branch information
nosovm committed Apr 22, 2024
1 parent b5e2bb3 commit e4832d6
Show file tree
Hide file tree
Showing 150 changed files with 748 additions and 666 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Voximplant API client library

#### Version 1.3.0
#### Version 1.4.0

## Prerequisites

Expand All @@ -25,7 +25,7 @@ Setup a `maven` dependency for your project:
<dependency>
<groupId>org.voximplant</groupId>
<artifactId>apiclient</artifactId>
<version>1.3.0</version>
<version>1.4.0</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.voximplant</groupId>
<artifactId>apiclient</artifactId>
<version>1.3.0</version>
<version>1.4.0</version>
<packaging>jar</packaging>

<name>voximplant-apiclient</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public A2PGetSmsHistoryRequest setDestinationNumber(String d) {
@RequestField(name="count")
/**
* Maximum number of resulting rows fetched. Must be not bigger than
* 1000. If left blank, then the default value of 1000 will be used
* 1000. If left blank, then the default value of 1000 is used
*/
public Long getCount() {
return this.count;
Expand All @@ -76,7 +76,7 @@ public boolean hasCount() {

/**
* Maximum number of resulting rows fetched. Must be not bigger than
* 1000. If left blank, then the default value of 1000 will be used
* 1000. If left blank, then the default value of 1000 is used
*/
public A2PGetSmsHistoryRequest setCount(long d) {
this.count = Long.valueOf(d);
Expand All @@ -87,7 +87,7 @@ public A2PGetSmsHistoryRequest setCount(long d) {

@RequestField(name="offset")
/**
* The first <b>N</b> records will be skipped in the output
* The first <b>N</b> records are skipped in the output
*/
public Long getOffset() {
return this.offset;
Expand All @@ -98,7 +98,7 @@ public boolean hasOffset() {
}

/**
* The first <b>N</b> records will be skipped in the output
* The first <b>N</b> records are skipped in the output
*/
public A2PGetSmsHistoryRequest setOffset(long d) {
this.offset = Long.valueOf(d);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public class A2PSendSmsRequest implements Alignable {

@RequestField(name="src_number")
/**
* The SenderID for outbound SMS. Please contact support for installing
* The SenderID for outgoing SMS. Please contact support for installing
* a SenderID
*/
public String getSrcNumber() {
Expand All @@ -31,7 +31,7 @@ public boolean hasSrcNumber() {
}

/**
* The SenderID for outbound SMS. Please contact support for installing
* The SenderID for outgoing SMS. Please contact support for installing
* a SenderID
*/
public A2PSendSmsRequest setSrcNumber(String d) {
Expand Down Expand Up @@ -93,7 +93,7 @@ public A2PSendSmsRequest setText(String d) {

@RequestField(name="store_body")
/**
* Set to true to store outbound message texts. Default value is false
* Whether to store outgoing message texts. Default value is false
*/
public Boolean getStoreBody() {
return this.storeBody;
Expand All @@ -104,7 +104,7 @@ public boolean hasStoreBody() {
}

/**
* Set to true to store outbound message texts. Default value is false
* Whether to store outgoing message texts. Default value is false
*/
public A2PSendSmsRequest setStoreBody(boolean d) {
this.storeBody = Boolean.valueOf(d);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ public AddAdminRoleRequest setAdminRoleName(String d) {

@RequestField(name="admin_role_active")
/**
* The admin role enable flag. If false the allowed and denied entries
* have no affect
* Whether the admin role is enabled. If false the allowed and denied
* entries have no affect
*/
public Boolean getAdminRoleActive() {
return this.adminRoleActive;
Expand All @@ -53,8 +53,8 @@ public boolean hasAdminRoleActive() {
}

/**
* The admin role enable flag. If false the allowed and denied entries
* have no affect
* Whether the admin role is enabled. If false the allowed and denied
* entries have no affect
*/
public AddAdminRoleRequest setAdminRoleActive(boolean d) {
this.adminRoleActive = Boolean.valueOf(d);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public AddAdminUserRequest setNewAdminUserPassword(String d) {

@RequestField(name="admin_user_active")
/**
* The admin user enable flag
* Whether the admin user is active
*/
public Boolean getAdminUserActive() {
return this.adminUserActive;
Expand All @@ -96,7 +96,7 @@ public boolean hasAdminUserActive() {
}

/**
* The admin user enable flag
* Whether the admin user is active
*/
public AddAdminUserRequest setAdminUserActive(boolean d) {
this.adminUserActive = Boolean.valueOf(d);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ public AddApplicationRequest setApplicationName(String d) {

@RequestField(name="secure_record_storage")
/**
* Enable secure storage for all logs and records of the application
* Whether to enable secure storage for all logs and records of the
* application
*/
public Boolean getSecureRecordStorage() {
return this.secureRecordStorage;
Expand All @@ -52,7 +53,8 @@ public boolean hasSecureRecordStorage() {
}

/**
* Enable secure storage for all logs and records of the application
* Whether to enable secure storage for all logs and records of the
* application
*/
public AddApplicationRequest setSecureRecordStorage(boolean d) {
this.secureRecordStorage = Boolean.valueOf(d);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public AddAuthorizedAccountIPRequest setAuthorizedIp(String d) {

@RequestField(name="allowed")
/**
* Set false to add the IP to the blacklist
* Whether to remove the IP from the blacklist
*/
public Boolean getAllowed() {
return this.allowed;
Expand All @@ -52,7 +52,7 @@ public boolean hasAllowed() {
}

/**
* Set false to add the IP to the blacklist
* Whether to remove the IP from the blacklist
*/
public AddAuthorizedAccountIPRequest setAllowed(boolean d) {
this.allowed = Boolean.valueOf(d);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ public AddPushCredentialRequest setCertPassword(String d) {

@RequestField(name="is_dev_mode")
/**
* Set true to use this certificate in apple's sandbox environment.
* Whether to use this certificate in apple's sandbox environment.
* Credentials for APPLE push
*/
public Boolean getIsDevMode() {
Expand All @@ -211,7 +211,7 @@ public boolean hasIsDevMode() {
}

/**
* Set true to use this certificate in apple's sandbox environment.
* Whether to use this certificate in apple's sandbox environment.
* Credentials for APPLE push
*/
public AddPushCredentialRequest setIsDevMode(boolean d) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,8 @@ public AddQueueRequest setAcdQueuePriority(long d) {

@RequestField(name="auto_binding")
/**
* Set false to disable the auto binding of operators to a queue by
* skills comparing
* Whether to enable the auto binding of operators to a queue by skills
* comparing
*/
public Boolean getAutoBinding() {
return this.autoBinding;
Expand All @@ -119,8 +119,8 @@ public boolean hasAutoBinding() {
}

/**
* Set false to disable the auto binding of operators to a queue by
* skills comparing
* Whether to enable the auto binding of operators to a queue by skills
* comparing
*/
public AddQueueRequest setAutoBinding(boolean d) {
this.autoBinding = Boolean.valueOf(d);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ public AddRuleRequest setRulePatternExclude(String d) {

@RequestField(name="video_conference")
/**
* Video conference is required
* Whether video conference is required
*/
public Boolean getVideoConference() {
return this.videoConference;
Expand All @@ -140,7 +140,7 @@ public boolean hasVideoConference() {
}

/**
* Video conference is required
* Whether video conference is required
*/
public AddRuleRequest setVideoConference(boolean d) {
this.videoConference = Boolean.valueOf(d);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ public AddScenarioRequest setRuleName(String d) {

@RequestField(name="rewrite")
/**
* Rewrite the existing scenario
* Whether to rewrite the existing scenario
*/
public Boolean getRewrite() {
return this.rewrite;
Expand All @@ -124,7 +124,7 @@ public boolean hasRewrite() {
}

/**
* Rewrite the existing scenario
* Whether to rewrite the existing scenario
*/
public AddScenarioRequest setRewrite(boolean d) {
this.rewrite = Boolean.valueOf(d);
Expand Down
22 changes: 12 additions & 10 deletions src/main/java/com/voximplant/apiclient/request/AddUserRequest.java
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public AddUserRequest setUserPassword(String d) {

@RequestField(name="application_id")
/**
* The application ID which a new user will be bound to. Can be used
* The application ID which a new user is to be bound to. Can be used
* instead of the <b>application_name</b> parameter
*/
public Long getApplicationId() {
Expand All @@ -101,7 +101,7 @@ public boolean hasApplicationId() {
}

/**
* The application ID which a new user will be bound to. Can be used
* The application ID which a new user is to be bound to. Can be used
* instead of the <b>application_name</b> parameter
*/
public AddUserRequest setApplicationId(long d) {
Expand All @@ -113,7 +113,7 @@ public AddUserRequest setApplicationId(long d) {

@RequestField(name="application_name")
/**
* The application name which a new user will be bound to. Can be used
* The application name which a new user is to be bound to. Can be used
* instead of the <b>application_id</b> parameter
*/
public String getApplicationName() {
Expand All @@ -125,7 +125,7 @@ public boolean hasApplicationName() {
}

/**
* The application name which a new user will be bound to. Can be used
* The application name which a new user is to be bound to. Can be used
* instead of the <b>application_id</b> parameter
*/
public AddUserRequest setApplicationName(String d) {
Expand All @@ -137,8 +137,8 @@ public AddUserRequest setApplicationName(String d) {

@RequestField(name="parent_accounting")
/**
* 'True' if the user will use the parent account's money, 'false' if
* the user will have a separate balance
* Whether the user uses the parent account's money, 'false' if the user
* has a separate balance
*/
public Boolean getParentAccounting() {
return this.parentAccounting;
Expand All @@ -149,8 +149,8 @@ public boolean hasParentAccounting() {
}

/**
* 'True' if the user will use the parent account's money, 'false' if
* the user will have a separate balance
* Whether the user uses the parent account's money, 'false' if the user
* has a separate balance
*/
public AddUserRequest setParentAccounting(boolean d) {
this.parentAccounting = Boolean.valueOf(d);
Expand Down Expand Up @@ -183,7 +183,8 @@ public AddUserRequest setMobilePhone(String d) {

@RequestField(name="user_active")
/**
* The user enable flag
* Whether the user is active. Inactive users cannot log in to
* applications
*/
public Boolean getUserActive() {
return this.userActive;
Expand All @@ -194,7 +195,8 @@ public boolean hasUserActive() {
}

/**
* The user enable flag
* Whether the user is active. Inactive users cannot log in to
* applications
*/
public AddUserRequest setUserActive(boolean d) {
this.userActive = Boolean.valueOf(d);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ public AttachPhoneNumberRequest setRegulationAddressId(long d) {

@RequestField(name="force_verification")
/**
* The force verification flag
* Whether the force verification is enabled
*/
public Boolean getForceVerification() {
return this.forceVerification;
Expand All @@ -188,7 +188,7 @@ public boolean hasForceVerification() {
}

/**
* The force verification flag
* Whether the force verification is enabled
*/
public AttachPhoneNumberRequest setForceVerification(boolean d) {
this.forceVerification = Boolean.valueOf(d);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public BindDialogflowKeysRequest setApplicationId(MultiArgument<Long> d) {

@RequestField(name="bind")
/**
* Set to false to unbind. Default value is true
* Whether to bind or unbind (set true or false respectively)
*/
public Boolean getBind() {
return this.bind;
Expand All @@ -76,7 +76,7 @@ public boolean hasBind() {
}

/**
* Set to false to unbind. Default value is true
* Whether to bind or unbind (set true or false respectively)
*/
public BindDialogflowKeysRequest setBind(boolean d) {
this.bind = Boolean.valueOf(d);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ public BindPhoneNumberToApplicationRequest setRuleName(String d) {

@RequestField(name="bind")
/**
* Bind or unbind (set true or false respectively)
* Whether to bind or unbind (set true or false respectively)
*/
public Boolean getBind() {
return this.bind;
Expand All @@ -166,7 +166,7 @@ public boolean hasBind() {
}

/**
* Bind or unbind (set true or false respectively)
* Whether to bind or unbind (set true or false respectively)
*/
public BindPhoneNumberToApplicationRequest setBind(boolean d) {
this.bind = Boolean.valueOf(d);
Expand Down
Loading

0 comments on commit e4832d6

Please sign in to comment.