diff --git a/README.md b/README.md
index a608119..1f0695c 100644
--- a/README.md
+++ b/README.md
@@ -22,7 +22,7 @@ Add this dependency to your project's POM:
com.sendinblue
sib-api-v3-sdk
- 1.0.1
+ 2.0.0
compile
```
@@ -32,7 +32,7 @@ Add this dependency to your project's POM:
Add this dependency to your project's build file:
```groovy
-compile "com.sendinblue:sib-api-v3-sdk:1.0.1"
+compile "com.sendinblue:sib-api-v3-sdk:2.0.0"
```
### Others
@@ -45,7 +45,7 @@ At first generate the JAR by executing:
Then manually install the following JARs:
-* target/sib-api-v3-sdk-1.0.1.jar
+* target/sib-api-v3-sdk-2.0.0.jar
* target/lib/*.jar
## Getting Started
@@ -116,7 +116,7 @@ Class | Method | HTTP request | Description
*ContactsApi* | [**getList**](docs/ContactsApi.md#getList) | **GET** /contacts/lists/{listId} | Get the details of a list
*ContactsApi* | [**getLists**](docs/ContactsApi.md#getLists) | **GET** /contacts/lists | Get all the lists
*ContactsApi* | [**importContacts**](docs/ContactsApi.md#importContacts) | **POST** /contacts/import | Import contacts
-*ContactsApi* | [**removeContactToList**](docs/ContactsApi.md#removeContactToList) | **POST** /contacts/lists/{listId}/contacts/remove | Remove existing contacts from a list
+*ContactsApi* | [**removeContactFromList**](docs/ContactsApi.md#removeContactFromList) | **POST** /contacts/lists/{listId}/contacts/remove | Remove existing contacts from a list
*ContactsApi* | [**requestContactExport**](docs/ContactsApi.md#requestContactExport) | **POST** /contacts/export | Export contacts
*ContactsApi* | [**updateAttribute**](docs/ContactsApi.md#updateAttribute) | **PUT** /contacts/attributes/{attributeCategory}/{attributeName} | Updates contact attribute
*ContactsApi* | [**updateContact**](docs/ContactsApi.md#updateContact) | **PUT** /contacts/{email} | Updates a contact
@@ -145,7 +145,7 @@ Class | Method | HTTP request | Description
*ListsApi* | [**getFolderLists**](docs/ListsApi.md#getFolderLists) | **GET** /contacts/folders/{folderId}/lists | Get the lists in a folder
*ListsApi* | [**getList**](docs/ListsApi.md#getList) | **GET** /contacts/lists/{listId} | Get the details of a list
*ListsApi* | [**getLists**](docs/ListsApi.md#getLists) | **GET** /contacts/lists | Get all the lists
-*ListsApi* | [**removeContactToList**](docs/ListsApi.md#removeContactToList) | **POST** /contacts/lists/{listId}/contacts/remove | Remove existing contacts from a list
+*ListsApi* | [**removeContactFromList**](docs/ListsApi.md#removeContactFromList) | **POST** /contacts/lists/{listId}/contacts/remove | Remove existing contacts from a list
*ListsApi* | [**updateList**](docs/ListsApi.md#updateList) | **PUT** /contacts/lists/{listId} | Update a list
*ProcessApi* | [**getProcess**](docs/ProcessApi.md#getProcess) | **GET** /processes/{processId} | Return the informations for a process
*ProcessApi* | [**getProcesses**](docs/ProcessApi.md#getProcesses) | **GET** /processes | Return all the processes for your account
@@ -199,8 +199,8 @@ Class | Method | HTTP request | Description
## Documentation for Models
+ - [AddContactToList](docs/AddContactToList.md)
- [AddCredits](docs/AddCredits.md)
- - [AddRemoveContactToList](docs/AddRemoveContactToList.md)
- [CreateAttribute](docs/CreateAttribute.md)
- [CreateAttributeEnumeration](docs/CreateAttributeEnumeration.md)
- [CreateChild](docs/CreateChild.md)
@@ -304,6 +304,7 @@ Class | Method | HTTP request | Description
- [RemainingCreditModel](docs/RemainingCreditModel.md)
- [RemainingCreditModelChild](docs/RemainingCreditModelChild.md)
- [RemainingCreditModelReseller](docs/RemainingCreditModelReseller.md)
+ - [RemoveContactFromList](docs/RemoveContactFromList.md)
- [RemoveCredits](docs/RemoveCredits.md)
- [RequestContactExport](docs/RequestContactExport.md)
- [RequestContactImport](docs/RequestContactImport.md)
@@ -369,4 +370,4 @@ Be sure to visit the SendinBlue official [documentation website](https://sendinb
If you find a bug, please post the issue on [Github](https://github.com/sendinblue/APIv3-java-library/issues).
-As always, if you need additional assistance, drop us a note [here](https://account.sendinblue.com/support).
\ No newline at end of file
+As always, if you need additional assistance, drop us a note [here](https://account.sendinblue.com/support).
diff --git a/build.gradle b/build.gradle
index 9ddea42..8601dd4 100644
--- a/build.gradle
+++ b/build.gradle
@@ -2,7 +2,7 @@ apply plugin: 'idea'
apply plugin: 'eclipse'
group = 'com.sendinblue'
-version = '1.0.0'
+version = '2.0.0'
buildscript {
repositories {
diff --git a/build.sbt b/build.sbt
index 7ab8702..d3d1472 100644
--- a/build.sbt
+++ b/build.sbt
@@ -2,7 +2,7 @@ lazy val root = (project in file(".")).
settings(
organization := "com.sendinblue",
name := "sib-api-v3-sdk",
- version := "1.0.0",
+ version := "2.0.0",
scalaVersion := "2.11.4",
scalacOptions ++= Seq("-feature"),
javacOptions in compile ++= Seq("-Xlint:deprecation"),
diff --git a/docs/AddRemoveContactToList.md b/docs/AddContactToList.md
similarity index 50%
rename from docs/AddRemoveContactToList.md
rename to docs/AddContactToList.md
index 487881e..ca49e5d 100644
--- a/docs/AddRemoveContactToList.md
+++ b/docs/AddContactToList.md
@@ -1,10 +1,10 @@
-# AddRemoveContactToList
+# AddContactToList
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**emails** | **List<String>** | Emails to add or remove from a list | [optional]
+**emails** | **List<String>** | Emails to add to a list | [optional]
diff --git a/docs/AddCredits.md b/docs/AddCredits.md
index a442c82..1a0f12c 100644
--- a/docs/AddCredits.md
+++ b/docs/AddCredits.md
@@ -4,8 +4,8 @@
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**sms** | **Long** | SMS credits to be added to the child account | [optional]
-**email** | **Long** | Email credits to be added to the child account | [optional]
+**sms** | **Long** | Required if email credits are empty. SMS credits to be added to the child account | [optional]
+**email** | **Long** | Required if sms credits are empty. Email credits to be added to the child account | [optional]
diff --git a/docs/ContactsApi.md b/docs/ContactsApi.md
index 69ee314..7795913 100644
--- a/docs/ContactsApi.md
+++ b/docs/ContactsApi.md
@@ -23,7 +23,7 @@ Method | HTTP request | Description
[**getList**](ContactsApi.md#getList) | **GET** /contacts/lists/{listId} | Get the details of a list
[**getLists**](ContactsApi.md#getLists) | **GET** /contacts/lists | Get all the lists
[**importContacts**](ContactsApi.md#importContacts) | **POST** /contacts/import | Import contacts
-[**removeContactToList**](ContactsApi.md#removeContactToList) | **POST** /contacts/lists/{listId}/contacts/remove | Remove existing contacts from a list
+[**removeContactFromList**](ContactsApi.md#removeContactFromList) | **POST** /contacts/lists/{listId}/contacts/remove | Remove existing contacts from a list
[**requestContactExport**](ContactsApi.md#requestContactExport) | **POST** /contacts/export | Export contacts
[**updateAttribute**](ContactsApi.md#updateAttribute) | **PUT** /contacts/attributes/{attributeCategory}/{attributeName} | Updates contact attribute
[**updateContact**](ContactsApi.md#updateContact) | **PUT** /contacts/{email} | Updates a contact
@@ -56,7 +56,7 @@ apiKey.setApiKey("YOUR API KEY");
ContactsApi apiInstance = new ContactsApi();
Long listId = 789L; // Long | Id of the list
-AddRemoveContactToList contactEmails = new AddRemoveContactToList(); // AddRemoveContactToList | Emails addresses of the contacts
+AddContactToList contactEmails = new AddContactToList(); // AddContactToList | Emails addresses of the contacts
try {
PostContactInfo result = apiInstance.addContactToList(listId, contactEmails);
System.out.println(result);
@@ -71,7 +71,7 @@ try {
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**listId** | **Long**| Id of the list |
- **contactEmails** | [**AddRemoveContactToList**](AddRemoveContactToList.md)| Emails addresses of the contacts |
+ **contactEmails** | [**AddContactToList**](AddContactToList.md)| Emails addresses of the contacts |
### Return type
@@ -1058,9 +1058,9 @@ Name | Type | Description | Notes
- **Content-Type**: application/json
- **Accept**: application/json
-
-# **removeContactToList**
-> PostContactInfo removeContactToList(listId, contactEmails)
+
+# **removeContactFromList**
+> PostContactInfo removeContactFromList(listId, contactEmails)
Remove existing contacts from a list
@@ -1083,12 +1083,12 @@ apiKey.setApiKey("YOUR API KEY");
ContactsApi apiInstance = new ContactsApi();
Long listId = 789L; // Long | Id of the list
-AddRemoveContactToList contactEmails = new AddRemoveContactToList(); // AddRemoveContactToList | Emails adresses of the contact
+RemoveContactFromList contactEmails = new RemoveContactFromList(); // RemoveContactFromList | Emails adresses of the contact
try {
- PostContactInfo result = apiInstance.removeContactToList(listId, contactEmails);
+ PostContactInfo result = apiInstance.removeContactFromList(listId, contactEmails);
System.out.println(result);
} catch (ApiException e) {
- System.err.println("Exception when calling ContactsApi#removeContactToList");
+ System.err.println("Exception when calling ContactsApi#removeContactFromList");
e.printStackTrace();
}
```
@@ -1098,7 +1098,7 @@ try {
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**listId** | **Long**| Id of the list |
- **contactEmails** | [**AddRemoveContactToList**](AddRemoveContactToList.md)| Emails adresses of the contact |
+ **contactEmails** | [**RemoveContactFromList**](RemoveContactFromList.md)| Emails adresses of the contact |
### Return type
diff --git a/docs/GetEmailCampaign.md b/docs/GetEmailCampaign.md
index 2854906..18b889e 100644
--- a/docs/GetEmailCampaign.md
+++ b/docs/GetEmailCampaign.md
@@ -24,6 +24,8 @@ Name | Type | Description | Notes
**inlineImageActivation** | **Boolean** | Status of inline image. inlineImageActivation = false means image can’t be embedded, & inlineImageActivation = true means image can be embedded, in the email. | [optional]
**mirrorActive** | **Boolean** | Status of mirror links in campaign. mirrorActive = false means mirror links are deactivated, & mirrorActive = true means mirror links are activated, in the campaign | [optional]
**recurring** | **Boolean** | FOR TRIGGER ONLY ! Type of trigger campaign.recurring = false means contact can receive the same Trigger campaign only once, & recurring = true means contact can receive the same Trigger campaign several times | [optional]
+**recipients** | **Object** | |
+**statistics** | **Object** | |
diff --git a/docs/GetEmailEventReportEvents.md b/docs/GetEmailEventReportEvents.md
index e5711c7..7773be4 100644
--- a/docs/GetEmailEventReportEvents.md
+++ b/docs/GetEmailEventReportEvents.md
@@ -10,10 +10,10 @@ Name | Type | Description | Notes
**messageId** | **String** | Message ID which generated the event |
**event** | [**EventEnum**](#EventEnum) | Event which occurred |
**reason** | **String** | Reason of bounce (only available if the event is hardbounce or softbounce) | [optional]
-**tag** | **String** | Tag of the email which generated the event |
+**tag** | **String** | Tag of the email which generated the event | [optional]
**ip** | **String** | IP from which the user has opened the email or clicked on the link (only available if the event is opened or clicks) | [optional]
**link** | **String** | The link which is sent to the user (only available if the event is requests or opened or clicks) | [optional]
-**from** | **String** | Sender email from which the emails are sent |
+**from** | **String** | Sender email from which the emails are sent | [optional]
diff --git a/docs/GetSmsCampaign.md b/docs/GetSmsCampaign.md
index e329101..2ced7f9 100644
--- a/docs/GetSmsCampaign.md
+++ b/docs/GetSmsCampaign.md
@@ -13,6 +13,8 @@ Name | Type | Description | Notes
**sender** | **String** | Sender of the SMS Campaign |
**createdAt** | [**OffsetDateTime**](OffsetDateTime.md) | Creation UTC date-time of the SMS campaign (YYYY-MM-DDTHH:mm:ss.SSSZ) |
**modifiedAt** | [**OffsetDateTime**](OffsetDateTime.md) | UTC date-time of last modification of the SMS campaign (YYYY-MM-DDTHH:mm:ss.SSSZ) |
+**recipients** | **Object** | |
+**statistics** | **Object** | |
diff --git a/docs/ListsApi.md b/docs/ListsApi.md
index f8f2d91..c92e6a5 100644
--- a/docs/ListsApi.md
+++ b/docs/ListsApi.md
@@ -11,7 +11,7 @@ Method | HTTP request | Description
[**getFolderLists**](ListsApi.md#getFolderLists) | **GET** /contacts/folders/{folderId}/lists | Get the lists in a folder
[**getList**](ListsApi.md#getList) | **GET** /contacts/lists/{listId} | Get the details of a list
[**getLists**](ListsApi.md#getLists) | **GET** /contacts/lists | Get all the lists
-[**removeContactToList**](ListsApi.md#removeContactToList) | **POST** /contacts/lists/{listId}/contacts/remove | Remove existing contacts from a list
+[**removeContactFromList**](ListsApi.md#removeContactFromList) | **POST** /contacts/lists/{listId}/contacts/remove | Remove existing contacts from a list
[**updateList**](ListsApi.md#updateList) | **PUT** /contacts/lists/{listId} | Update a list
@@ -40,7 +40,7 @@ apiKey.setApiKey("YOUR API KEY");
ListsApi apiInstance = new ListsApi();
Long listId = 789L; // Long | Id of the list
-AddRemoveContactToList contactEmails = new AddRemoveContactToList(); // AddRemoveContactToList | Emails addresses of the contacts
+AddContactToList contactEmails = new AddContactToList(); // AddContactToList | Emails addresses of the contacts
try {
PostContactInfo result = apiInstance.addContactToList(listId, contactEmails);
System.out.println(result);
@@ -55,7 +55,7 @@ try {
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**listId** | **Long**| Id of the list |
- **contactEmails** | [**AddRemoveContactToList**](AddRemoveContactToList.md)| Emails addresses of the contacts |
+ **contactEmails** | [**AddContactToList**](AddContactToList.md)| Emails addresses of the contacts |
### Return type
@@ -399,9 +399,9 @@ Name | Type | Description | Notes
- **Content-Type**: application/json
- **Accept**: application/json
-
-# **removeContactToList**
-> PostContactInfo removeContactToList(listId, contactEmails)
+
+# **removeContactFromList**
+> PostContactInfo removeContactFromList(listId, contactEmails)
Remove existing contacts from a list
@@ -424,12 +424,12 @@ apiKey.setApiKey("YOUR API KEY");
ListsApi apiInstance = new ListsApi();
Long listId = 789L; // Long | Id of the list
-AddRemoveContactToList contactEmails = new AddRemoveContactToList(); // AddRemoveContactToList | Emails adresses of the contact
+RemoveContactFromList contactEmails = new RemoveContactFromList(); // RemoveContactFromList | Emails adresses of the contact
try {
- PostContactInfo result = apiInstance.removeContactToList(listId, contactEmails);
+ PostContactInfo result = apiInstance.removeContactFromList(listId, contactEmails);
System.out.println(result);
} catch (ApiException e) {
- System.err.println("Exception when calling ListsApi#removeContactToList");
+ System.err.println("Exception when calling ListsApi#removeContactFromList");
e.printStackTrace();
}
```
@@ -439,7 +439,7 @@ try {
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**listId** | **Long**| Id of the list |
- **contactEmails** | [**AddRemoveContactToList**](AddRemoveContactToList.md)| Emails adresses of the contact |
+ **contactEmails** | [**RemoveContactFromList**](RemoveContactFromList.md)| Emails adresses of the contact |
### Return type
diff --git a/docs/RemoveContactFromList.md b/docs/RemoveContactFromList.md
new file mode 100644
index 0000000..7ab057f
--- /dev/null
+++ b/docs/RemoveContactFromList.md
@@ -0,0 +1,11 @@
+
+# RemoveContactFromList
+
+## Properties
+Name | Type | Description | Notes
+------------ | ------------- | ------------- | -------------
+**emails** | **List<String>** | Required if 'all' is false. Emails to remove from a list | [optional]
+**all** | **Boolean** | Required if 'emails' is empty. Remove all existing contacts from a list | [optional]
+
+
+
diff --git a/docs/RemoveCredits.md b/docs/RemoveCredits.md
index c9c8011..67c9190 100644
--- a/docs/RemoveCredits.md
+++ b/docs/RemoveCredits.md
@@ -4,8 +4,8 @@
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**sms** | **Long** | SMS credits to be removed from the child account | [optional]
-**email** | **Long** | Email credits to be removed from the child account | [optional]
+**sms** | **Long** | Required if email credits are empty. SMS credits to be removed from the child account | [optional]
+**email** | **Long** | Required if sms credits are empty. Email credits to be removed from the child account | [optional]
diff --git a/docs/SendEmailAttachment.md b/docs/SendEmailAttachment.md
index a99b9f1..14af3a7 100644
--- a/docs/SendEmailAttachment.md
+++ b/docs/SendEmailAttachment.md
@@ -5,4 +5,4 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**content** | **byte[]** | Byte array of the attachment generated on the fly ( Encoded to base64 chunk data at our end ) | [optional]
-**name** | **String** | Required for content. Name of the attachment | [optional]
\ No newline at end of file
+**name** | **String** | Required for content. Name of the attachment | [optional]
diff --git a/docs/SendSmtpEmail.md b/docs/SendSmtpEmail.md
index 919ba85..da649bf 100644
--- a/docs/SendSmtpEmail.md
+++ b/docs/SendSmtpEmail.md
@@ -4,15 +4,15 @@
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
-**sender** | [**SendSmtpEmailSender**](SendSmtpEmailSender.md) | |
+**sender** | [**SendSmtpEmailSender**](SendSmtpEmailSender.md) | | [optional]
**to** | [**List<SendSmtpEmailTo>**](SendSmtpEmailTo.md) | Email addresses and names of the recipients |
**bcc** | [**List<SendSmtpEmailBcc>**](SendSmtpEmailBcc.md) | Email addresses and names of the recipients in bcc | [optional]
**cc** | [**List<SendSmtpEmailCc>**](SendSmtpEmailCc.md) | Email addresses and names of the recipients in cc | [optional]
-**htmlContent** | **String** | HTML body of the message ( Ignored if templateId is passed ) |
-**textContent** | **String** | Plain Text body of the message ( Ignored if templateId is passed ) | [optional]
-**subject** | **String** | Subject of the message |
+**htmlContent** | **String** | HTML body of the message ( Mandatory if 'templateId' is not passed, ignored if 'templateId' is passed ) | [optional]
+**textContent** | **String** | Plain Text body of the message ( Ignored if 'templateId' is passed ) | [optional]
+**subject** | **String** | Subject of the message. Mandatory if 'templateId' is not passed | [optional]
**replyTo** | [**SendSmtpEmailReplyTo**](SendSmtpEmailReplyTo.md) | | [optional]
-**attachment** | [**List<SendSmtpEmailAttachment>**](SendSmtpEmailAttachment.md) | Pass the absolute URL (no local file) or the byte array of the attachment. Name can be used in both cases to define the attachment name. It is mandatory in case of content. Extension allowed: xlsx, xls, ods, docx, docm, doc, csv, pdf, txt, gif, jpg, jpeg, png, tif, tiff, rtf, bmp, cgm, css, shtml, html, htm, zip, xml, ppt, pptx, tar, ez, ics, mobi, msg, pub and eps | [optional]
+**attachment** | [**List<SendSmtpEmailAttachment>**](SendSmtpEmailAttachment.md) | Pass the absolute URL (no local file) or the or the byte array of the attachment. Name can be used in both cases to define the attachment name. It is mandatory in case of content. Extension allowed: xlsx, xls, ods, docx, docm, doc, csv, pdf, txt, gif, jpg, jpeg, png, tif, tiff, rtf, bmp, cgm, css, shtml, html, htm, zip, xml, ppt, pptx, tar, ez, ics, mobi, msg, pub and eps ( Ignored if 'templateId' is passed ) | [optional]
**headers** | **Map<String, String>** | | [optional]
**templateId** | **Long** | Id of the template | [optional]
**params** | **Map<String, String>** | | [optional]
diff --git a/docs/SendSmtpEmailAttachment.md b/docs/SendSmtpEmailAttachment.md
index 17be21f..d2ff483 100644
--- a/docs/SendSmtpEmailAttachment.md
+++ b/docs/SendSmtpEmailAttachment.md
@@ -6,4 +6,4 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**url** | **String** | Absolute url of the attachment (no local file). | [optional]
**content** | **byte[]** | Byte array of the attachment generated on the fly ( Encoded to base64 chunk data at our end ) | [optional]
-**name** | **String** | Required for content. Name of the attachment | [optional]
\ No newline at end of file
+**name** | **String** | Required for content. Name of the attachment | [optional]
diff --git a/pom.xml b/pom.xml
index 5660f26..30b2b0a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -5,7 +5,7 @@
sib-api-v3-sdk
jar
sib-api-v3-sdk
- 1.0.1
+ 2.0.0
https://github.com/sendinblue/APIv3-java-library
SendinBlue's API v3 Java Library
diff --git a/src/main/java/sendinblue/ApiClient.java b/src/main/java/sendinblue/ApiClient.java
index c1fc3a5..70e37c0 100644
--- a/src/main/java/sendinblue/ApiClient.java
+++ b/src/main/java/sendinblue/ApiClient.java
@@ -85,7 +85,7 @@ public ApiClient() {
json = new Json();
// Set default User-Agent.
- setUserAgent("Swagger-Codegen/1.0.0/java");
+ setUserAgent("Swagger-Codegen/2.0.0/java");
// Setup authentications (key: authentication name, value: authentication).
authentications = new HashMap();
diff --git a/src/main/java/sendinblue/ApiException.java b/src/main/java/sendinblue/ApiException.java
index 11bb5f2..99e5092 100644
--- a/src/main/java/sendinblue/ApiException.java
+++ b/src/main/java/sendinblue/ApiException.java
@@ -16,7 +16,7 @@
import java.util.Map;
import java.util.List;
-@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-02-15T11:12:00.535+05:30")
+@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-03-23T10:53:13.078+05:30")
public class ApiException extends Exception {
private int code = 0;
private Map> responseHeaders = null;
diff --git a/src/main/java/sendinblue/Configuration.java b/src/main/java/sendinblue/Configuration.java
index 17a388c..52c5ca0 100644
--- a/src/main/java/sendinblue/Configuration.java
+++ b/src/main/java/sendinblue/Configuration.java
@@ -13,7 +13,7 @@
package sendinblue;
-@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-02-15T11:12:00.535+05:30")
+@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-03-23T10:53:13.078+05:30")
public class Configuration {
private static ApiClient defaultApiClient = new ApiClient();
diff --git a/src/main/java/sendinblue/Pair.java b/src/main/java/sendinblue/Pair.java
index 16cc9c9..4a3be97 100644
--- a/src/main/java/sendinblue/Pair.java
+++ b/src/main/java/sendinblue/Pair.java
@@ -13,7 +13,7 @@
package sendinblue;
-@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-02-15T11:12:00.535+05:30")
+@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-03-23T10:53:13.078+05:30")
public class Pair {
private String name = "";
private String value = "";
diff --git a/src/main/java/sendinblue/StringUtil.java b/src/main/java/sendinblue/StringUtil.java
index 12a0247..705db0d 100644
--- a/src/main/java/sendinblue/StringUtil.java
+++ b/src/main/java/sendinblue/StringUtil.java
@@ -13,7 +13,7 @@
package sendinblue;
-@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-02-15T11:12:00.535+05:30")
+@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-03-23T10:53:13.078+05:30")
public class StringUtil {
/**
* Check if the given array contains the given value (with case-insensitive comparison).
diff --git a/src/main/java/sendinblue/auth/ApiKeyAuth.java b/src/main/java/sendinblue/auth/ApiKeyAuth.java
index 43814a5..09940dd 100644
--- a/src/main/java/sendinblue/auth/ApiKeyAuth.java
+++ b/src/main/java/sendinblue/auth/ApiKeyAuth.java
@@ -18,7 +18,7 @@
import java.util.Map;
import java.util.List;
-@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-02-15T11:12:00.535+05:30")
+@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-03-23T10:53:13.078+05:30")
public class ApiKeyAuth implements Authentication {
private final String location;
private final String paramName;
diff --git a/src/main/java/sendinblue/auth/OAuth.java b/src/main/java/sendinblue/auth/OAuth.java
index 2f70969..aaaf8dc 100644
--- a/src/main/java/sendinblue/auth/OAuth.java
+++ b/src/main/java/sendinblue/auth/OAuth.java
@@ -18,7 +18,7 @@
import java.util.Map;
import java.util.List;
-@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-02-15T11:12:00.535+05:30")
+@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-03-23T10:53:13.078+05:30")
public class OAuth implements Authentication {
private String accessToken;
diff --git a/src/main/java/sibApi/ContactsApi.java b/src/main/java/sibApi/ContactsApi.java
index 5495430..145c9ae 100644
--- a/src/main/java/sibApi/ContactsApi.java
+++ b/src/main/java/sibApi/ContactsApi.java
@@ -27,7 +27,7 @@
import java.io.IOException;
-import sibModel.AddRemoveContactToList;
+import sibModel.AddContactToList;
import sibModel.CreateAttribute;
import sibModel.CreateContact;
import sibModel.CreateList;
@@ -46,6 +46,7 @@
import sibModel.GetLists;
import org.threeten.bp.OffsetDateTime;
import sibModel.PostContactInfo;
+import sibModel.RemoveContactFromList;
import sibModel.RequestContactExport;
import sibModel.RequestContactImport;
import sibModel.UpdateAttribute;
@@ -86,7 +87,7 @@ public void setApiClient(ApiClient apiClient) {
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
*/
- public com.squareup.okhttp.Call addContactToListCall(Long listId, AddRemoveContactToList contactEmails, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
+ public com.squareup.okhttp.Call addContactToListCall(Long listId, AddContactToList contactEmails, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
Object localVarPostBody = contactEmails;
// create path and map variables
@@ -129,7 +130,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch
}
@SuppressWarnings("rawtypes")
- private com.squareup.okhttp.Call addContactToListValidateBeforeCall(Long listId, AddRemoveContactToList contactEmails, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
+ private com.squareup.okhttp.Call addContactToListValidateBeforeCall(Long listId, AddContactToList contactEmails, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
// verify the required parameter 'listId' is set
if (listId == null) {
@@ -155,7 +156,7 @@ private com.squareup.okhttp.Call addContactToListValidateBeforeCall(Long listId,
* @return PostContactInfo
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
*/
- public PostContactInfo addContactToList(Long listId, AddRemoveContactToList contactEmails) throws ApiException {
+ public PostContactInfo addContactToList(Long listId, AddContactToList contactEmails) throws ApiException {
ApiResponse resp = addContactToListWithHttpInfo(listId, contactEmails);
return resp.getData();
}
@@ -168,7 +169,7 @@ public PostContactInfo addContactToList(Long listId, AddRemoveContactToList cont
* @return ApiResponse<PostContactInfo>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
*/
- public ApiResponse addContactToListWithHttpInfo(Long listId, AddRemoveContactToList contactEmails) throws ApiException {
+ public ApiResponse addContactToListWithHttpInfo(Long listId, AddContactToList contactEmails) throws ApiException {
com.squareup.okhttp.Call call = addContactToListValidateBeforeCall(listId, contactEmails, null, null);
Type localVarReturnType = new TypeToken(){}.getType();
return apiClient.execute(call, localVarReturnType);
@@ -183,7 +184,7 @@ public ApiResponse addContactToListWithHttpInfo(Long listId, Ad
* @return The request call
* @throws ApiException If fail to process the API call, e.g. serializing the request body object
*/
- public com.squareup.okhttp.Call addContactToListAsync(Long listId, AddRemoveContactToList contactEmails, final ApiCallback callback) throws ApiException {
+ public com.squareup.okhttp.Call addContactToListAsync(Long listId, AddContactToList contactEmails, final ApiCallback callback) throws ApiException {
ProgressResponseBody.ProgressListener progressListener = null;
ProgressRequestBody.ProgressRequestListener progressRequestListener = null;
@@ -2475,7 +2476,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don
return call;
}
/**
- * Build call for removeContactToList
+ * Build call for removeContactFromList
* @param listId Id of the list (required)
* @param contactEmails Emails adresses of the contact (required)
* @param progressListener Progress listener
@@ -2483,7 +2484,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
*/
- public com.squareup.okhttp.Call removeContactToListCall(Long listId, AddRemoveContactToList contactEmails, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
+ public com.squareup.okhttp.Call removeContactFromListCall(Long listId, RemoveContactFromList contactEmails, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
Object localVarPostBody = contactEmails;
// create path and map variables
@@ -2526,20 +2527,20 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch
}
@SuppressWarnings("rawtypes")
- private com.squareup.okhttp.Call removeContactToListValidateBeforeCall(Long listId, AddRemoveContactToList contactEmails, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
+ private com.squareup.okhttp.Call removeContactFromListValidateBeforeCall(Long listId, RemoveContactFromList contactEmails, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
// verify the required parameter 'listId' is set
if (listId == null) {
- throw new ApiException("Missing the required parameter 'listId' when calling removeContactToList(Async)");
+ throw new ApiException("Missing the required parameter 'listId' when calling removeContactFromList(Async)");
}
// verify the required parameter 'contactEmails' is set
if (contactEmails == null) {
- throw new ApiException("Missing the required parameter 'contactEmails' when calling removeContactToList(Async)");
+ throw new ApiException("Missing the required parameter 'contactEmails' when calling removeContactFromList(Async)");
}
- com.squareup.okhttp.Call call = removeContactToListCall(listId, contactEmails, progressListener, progressRequestListener);
+ com.squareup.okhttp.Call call = removeContactFromListCall(listId, contactEmails, progressListener, progressRequestListener);
return call;
}
@@ -2552,8 +2553,8 @@ private com.squareup.okhttp.Call removeContactToListValidateBeforeCall(Long list
* @return PostContactInfo
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
*/
- public PostContactInfo removeContactToList(Long listId, AddRemoveContactToList contactEmails) throws ApiException {
- ApiResponse resp = removeContactToListWithHttpInfo(listId, contactEmails);
+ public PostContactInfo removeContactFromList(Long listId, RemoveContactFromList contactEmails) throws ApiException {
+ ApiResponse resp = removeContactFromListWithHttpInfo(listId, contactEmails);
return resp.getData();
}
@@ -2565,8 +2566,8 @@ public PostContactInfo removeContactToList(Long listId, AddRemoveContactToList c
* @return ApiResponse<PostContactInfo>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
*/
- public ApiResponse removeContactToListWithHttpInfo(Long listId, AddRemoveContactToList contactEmails) throws ApiException {
- com.squareup.okhttp.Call call = removeContactToListValidateBeforeCall(listId, contactEmails, null, null);
+ public ApiResponse removeContactFromListWithHttpInfo(Long listId, RemoveContactFromList contactEmails) throws ApiException {
+ com.squareup.okhttp.Call call = removeContactFromListValidateBeforeCall(listId, contactEmails, null, null);
Type localVarReturnType = new TypeToken(){}.getType();
return apiClient.execute(call, localVarReturnType);
}
@@ -2580,7 +2581,7 @@ public ApiResponse removeContactToListWithHttpInfo(Long listId,
* @return The request call
* @throws ApiException If fail to process the API call, e.g. serializing the request body object
*/
- public com.squareup.okhttp.Call removeContactToListAsync(Long listId, AddRemoveContactToList contactEmails, final ApiCallback callback) throws ApiException {
+ public com.squareup.okhttp.Call removeContactFromListAsync(Long listId, RemoveContactFromList contactEmails, final ApiCallback callback) throws ApiException {
ProgressResponseBody.ProgressListener progressListener = null;
ProgressRequestBody.ProgressRequestListener progressRequestListener = null;
@@ -2601,7 +2602,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don
};
}
- com.squareup.okhttp.Call call = removeContactToListValidateBeforeCall(listId, contactEmails, progressListener, progressRequestListener);
+ com.squareup.okhttp.Call call = removeContactFromListValidateBeforeCall(listId, contactEmails, progressListener, progressRequestListener);
Type localVarReturnType = new TypeToken(){}.getType();
apiClient.executeAsync(call, localVarReturnType, callback);
return call;
diff --git a/src/main/java/sibApi/ListsApi.java b/src/main/java/sibApi/ListsApi.java
index ce54075..7a7a093 100644
--- a/src/main/java/sibApi/ListsApi.java
+++ b/src/main/java/sibApi/ListsApi.java
@@ -27,7 +27,7 @@
import java.io.IOException;
-import sibModel.AddRemoveContactToList;
+import sibModel.AddContactToList;
import sibModel.CreateList;
import sibModel.CreateModel;
import sibModel.ErrorModel;
@@ -37,6 +37,7 @@
import sibModel.GetLists;
import org.threeten.bp.OffsetDateTime;
import sibModel.PostContactInfo;
+import sibModel.RemoveContactFromList;
import sibModel.UpdateList;
import java.lang.reflect.Type;
@@ -73,7 +74,7 @@ public void setApiClient(ApiClient apiClient) {
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
*/
- public com.squareup.okhttp.Call addContactToListCall(Long listId, AddRemoveContactToList contactEmails, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
+ public com.squareup.okhttp.Call addContactToListCall(Long listId, AddContactToList contactEmails, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
Object localVarPostBody = contactEmails;
// create path and map variables
@@ -116,7 +117,7 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch
}
@SuppressWarnings("rawtypes")
- private com.squareup.okhttp.Call addContactToListValidateBeforeCall(Long listId, AddRemoveContactToList contactEmails, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
+ private com.squareup.okhttp.Call addContactToListValidateBeforeCall(Long listId, AddContactToList contactEmails, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
// verify the required parameter 'listId' is set
if (listId == null) {
@@ -142,7 +143,7 @@ private com.squareup.okhttp.Call addContactToListValidateBeforeCall(Long listId,
* @return PostContactInfo
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
*/
- public PostContactInfo addContactToList(Long listId, AddRemoveContactToList contactEmails) throws ApiException {
+ public PostContactInfo addContactToList(Long listId, AddContactToList contactEmails) throws ApiException {
ApiResponse resp = addContactToListWithHttpInfo(listId, contactEmails);
return resp.getData();
}
@@ -155,7 +156,7 @@ public PostContactInfo addContactToList(Long listId, AddRemoveContactToList cont
* @return ApiResponse<PostContactInfo>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
*/
- public ApiResponse addContactToListWithHttpInfo(Long listId, AddRemoveContactToList contactEmails) throws ApiException {
+ public ApiResponse addContactToListWithHttpInfo(Long listId, AddContactToList contactEmails) throws ApiException {
com.squareup.okhttp.Call call = addContactToListValidateBeforeCall(listId, contactEmails, null, null);
Type localVarReturnType = new TypeToken(){}.getType();
return apiClient.execute(call, localVarReturnType);
@@ -170,7 +171,7 @@ public ApiResponse addContactToListWithHttpInfo(Long listId, Ad
* @return The request call
* @throws ApiException If fail to process the API call, e.g. serializing the request body object
*/
- public com.squareup.okhttp.Call addContactToListAsync(Long listId, AddRemoveContactToList contactEmails, final ApiCallback callback) throws ApiException {
+ public com.squareup.okhttp.Call addContactToListAsync(Long listId, AddContactToList contactEmails, final ApiCallback callback) throws ApiException {
ProgressResponseBody.ProgressListener progressListener = null;
ProgressRequestBody.ProgressRequestListener progressRequestListener = null;
@@ -962,7 +963,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don
return call;
}
/**
- * Build call for removeContactToList
+ * Build call for removeContactFromList
* @param listId Id of the list (required)
* @param contactEmails Emails adresses of the contact (required)
* @param progressListener Progress listener
@@ -970,7 +971,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
*/
- public com.squareup.okhttp.Call removeContactToListCall(Long listId, AddRemoveContactToList contactEmails, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
+ public com.squareup.okhttp.Call removeContactFromListCall(Long listId, RemoveContactFromList contactEmails, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
Object localVarPostBody = contactEmails;
// create path and map variables
@@ -1013,20 +1014,20 @@ public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Ch
}
@SuppressWarnings("rawtypes")
- private com.squareup.okhttp.Call removeContactToListValidateBeforeCall(Long listId, AddRemoveContactToList contactEmails, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
+ private com.squareup.okhttp.Call removeContactFromListValidateBeforeCall(Long listId, RemoveContactFromList contactEmails, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
// verify the required parameter 'listId' is set
if (listId == null) {
- throw new ApiException("Missing the required parameter 'listId' when calling removeContactToList(Async)");
+ throw new ApiException("Missing the required parameter 'listId' when calling removeContactFromList(Async)");
}
// verify the required parameter 'contactEmails' is set
if (contactEmails == null) {
- throw new ApiException("Missing the required parameter 'contactEmails' when calling removeContactToList(Async)");
+ throw new ApiException("Missing the required parameter 'contactEmails' when calling removeContactFromList(Async)");
}
- com.squareup.okhttp.Call call = removeContactToListCall(listId, contactEmails, progressListener, progressRequestListener);
+ com.squareup.okhttp.Call call = removeContactFromListCall(listId, contactEmails, progressListener, progressRequestListener);
return call;
}
@@ -1039,8 +1040,8 @@ private com.squareup.okhttp.Call removeContactToListValidateBeforeCall(Long list
* @return PostContactInfo
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
*/
- public PostContactInfo removeContactToList(Long listId, AddRemoveContactToList contactEmails) throws ApiException {
- ApiResponse resp = removeContactToListWithHttpInfo(listId, contactEmails);
+ public PostContactInfo removeContactFromList(Long listId, RemoveContactFromList contactEmails) throws ApiException {
+ ApiResponse resp = removeContactFromListWithHttpInfo(listId, contactEmails);
return resp.getData();
}
@@ -1052,8 +1053,8 @@ public PostContactInfo removeContactToList(Long listId, AddRemoveContactToList c
* @return ApiResponse<PostContactInfo>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
*/
- public ApiResponse removeContactToListWithHttpInfo(Long listId, AddRemoveContactToList contactEmails) throws ApiException {
- com.squareup.okhttp.Call call = removeContactToListValidateBeforeCall(listId, contactEmails, null, null);
+ public ApiResponse removeContactFromListWithHttpInfo(Long listId, RemoveContactFromList contactEmails) throws ApiException {
+ com.squareup.okhttp.Call call = removeContactFromListValidateBeforeCall(listId, contactEmails, null, null);
Type localVarReturnType = new TypeToken(){}.getType();
return apiClient.execute(call, localVarReturnType);
}
@@ -1067,7 +1068,7 @@ public ApiResponse removeContactToListWithHttpInfo(Long listId,
* @return The request call
* @throws ApiException If fail to process the API call, e.g. serializing the request body object
*/
- public com.squareup.okhttp.Call removeContactToListAsync(Long listId, AddRemoveContactToList contactEmails, final ApiCallback callback) throws ApiException {
+ public com.squareup.okhttp.Call removeContactFromListAsync(Long listId, RemoveContactFromList contactEmails, final ApiCallback callback) throws ApiException {
ProgressResponseBody.ProgressListener progressListener = null;
ProgressRequestBody.ProgressRequestListener progressRequestListener = null;
@@ -1088,7 +1089,7 @@ public void onRequestProgress(long bytesWritten, long contentLength, boolean don
};
}
- com.squareup.okhttp.Call call = removeContactToListValidateBeforeCall(listId, contactEmails, progressListener, progressRequestListener);
+ com.squareup.okhttp.Call call = removeContactFromListValidateBeforeCall(listId, contactEmails, progressListener, progressRequestListener);
Type localVarReturnType = new TypeToken(){}.getType();
apiClient.executeAsync(call, localVarReturnType, callback);
return call;
diff --git a/src/main/java/sibModel/AddRemoveContactToList.java b/src/main/java/sibModel/AddContactToList.java
similarity index 83%
rename from src/main/java/sibModel/AddRemoveContactToList.java
rename to src/main/java/sibModel/AddContactToList.java
index 2562b59..7e7d400 100644
--- a/src/main/java/sibModel/AddRemoveContactToList.java
+++ b/src/main/java/sibModel/AddContactToList.java
@@ -26,19 +26,19 @@
import java.util.List;
/**
- * AddRemoveContactToList
+ * AddContactToList
*/
-@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-02-15T11:12:00.535+05:30")
-public class AddRemoveContactToList {
+@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-03-23T10:53:13.078+05:30")
+public class AddContactToList {
@SerializedName("emails")
private List emails = null;
- public AddRemoveContactToList emails(List emails) {
+ public AddContactToList emails(List emails) {
this.emails = emails;
return this;
}
- public AddRemoveContactToList addEmailsItem(String emailsItem) {
+ public AddContactToList addEmailsItem(String emailsItem) {
if (this.emails == null) {
this.emails = new ArrayList();
}
@@ -47,10 +47,10 @@ public AddRemoveContactToList addEmailsItem(String emailsItem) {
}
/**
- * Emails to add or remove from a list
+ * Emails to add to a list
* @return emails
**/
- @ApiModelProperty(value = "Emails to add or remove from a list")
+ @ApiModelProperty(value = "Emails to add to a list")
public List getEmails() {
return emails;
}
@@ -68,8 +68,8 @@ public boolean equals(java.lang.Object o) {
if (o == null || getClass() != o.getClass()) {
return false;
}
- AddRemoveContactToList addRemoveContactToList = (AddRemoveContactToList) o;
- return ObjectUtils.equals(this.emails, addRemoveContactToList.emails);
+ AddContactToList addContactToList = (AddContactToList) o;
+ return ObjectUtils.equals(this.emails, addContactToList.emails);
}
@Override
@@ -81,7 +81,7 @@ public int hashCode() {
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
- sb.append("class AddRemoveContactToList {\n");
+ sb.append("class AddContactToList {\n");
sb.append(" emails: ").append(toIndentedString(emails)).append("\n");
sb.append("}");
diff --git a/src/main/java/sibModel/AddCredits.java b/src/main/java/sibModel/AddCredits.java
index 4fda603..0a2c19a 100644
--- a/src/main/java/sibModel/AddCredits.java
+++ b/src/main/java/sibModel/AddCredits.java
@@ -26,7 +26,7 @@
/**
* AddCredits
*/
-@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-02-15T11:12:00.535+05:30")
+@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-03-23T10:53:13.078+05:30")
public class AddCredits {
@SerializedName("sms")
private Long sms = null;
@@ -40,10 +40,10 @@ public AddCredits sms(Long sms) {
}
/**
- * SMS credits to be added to the child account
+ * Required if email credits are empty. SMS credits to be added to the child account
* @return sms
**/
- @ApiModelProperty(example = "450", value = "SMS credits to be added to the child account")
+ @ApiModelProperty(example = "450", value = "Required if email credits are empty. SMS credits to be added to the child account")
public Long getSms() {
return sms;
}
@@ -58,10 +58,10 @@ public AddCredits email(Long email) {
}
/**
- * Email credits to be added to the child account
+ * Required if sms credits are empty. Email credits to be added to the child account
* @return email
**/
- @ApiModelProperty(example = "1200", value = "Email credits to be added to the child account")
+ @ApiModelProperty(example = "1200", value = "Required if sms credits are empty. Email credits to be added to the child account")
public Long getEmail() {
return email;
}
diff --git a/src/main/java/sibModel/CreateAttribute.java b/src/main/java/sibModel/CreateAttribute.java
index 3eb7e53..b4f79e9 100644
--- a/src/main/java/sibModel/CreateAttribute.java
+++ b/src/main/java/sibModel/CreateAttribute.java
@@ -29,7 +29,7 @@
/**
* CreateAttribute
*/
-@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-02-15T11:12:00.535+05:30")
+@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-03-23T10:53:13.078+05:30")
public class CreateAttribute {
@SerializedName("value")
private String value = null;
diff --git a/src/main/java/sibModel/CreateAttributeEnumeration.java b/src/main/java/sibModel/CreateAttributeEnumeration.java
index 592f1d4..5cf2136 100644
--- a/src/main/java/sibModel/CreateAttributeEnumeration.java
+++ b/src/main/java/sibModel/CreateAttributeEnumeration.java
@@ -26,7 +26,7 @@
/**
* CreateAttributeEnumeration
*/
-@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-02-15T11:12:00.535+05:30")
+@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-03-23T10:53:13.078+05:30")
public class CreateAttributeEnumeration {
@SerializedName("value")
private Integer value = null;
diff --git a/src/main/java/sibModel/CreateChild.java b/src/main/java/sibModel/CreateChild.java
index 4712963..9dd6013 100644
--- a/src/main/java/sibModel/CreateChild.java
+++ b/src/main/java/sibModel/CreateChild.java
@@ -26,7 +26,7 @@
/**
* CreateChild
*/
-@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-02-15T11:12:00.535+05:30")
+@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-03-23T10:53:13.078+05:30")
public class CreateChild {
@SerializedName("email")
private String email = null;
diff --git a/src/main/java/sibModel/CreateContact.java b/src/main/java/sibModel/CreateContact.java
index adc7a5e..54b6578 100644
--- a/src/main/java/sibModel/CreateContact.java
+++ b/src/main/java/sibModel/CreateContact.java
@@ -28,7 +28,7 @@
/**
* CreateContact
*/
-@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-02-15T11:12:00.535+05:30")
+@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-03-23T10:53:13.078+05:30")
public class CreateContact {
@SerializedName("email")
private String email = null;
diff --git a/src/main/java/sibModel/CreateEmailCampaign.java b/src/main/java/sibModel/CreateEmailCampaign.java
index e5975cb..24ef561 100644
--- a/src/main/java/sibModel/CreateEmailCampaign.java
+++ b/src/main/java/sibModel/CreateEmailCampaign.java
@@ -29,7 +29,7 @@
/**
* CreateEmailCampaign
*/
-@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-02-15T11:12:00.535+05:30")
+@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-03-23T10:53:13.078+05:30")
public class CreateEmailCampaign {
@SerializedName("tag")
private String tag = null;
diff --git a/src/main/java/sibModel/CreateEmailCampaignRecipients.java b/src/main/java/sibModel/CreateEmailCampaignRecipients.java
index 508ba2d..542957b 100644
--- a/src/main/java/sibModel/CreateEmailCampaignRecipients.java
+++ b/src/main/java/sibModel/CreateEmailCampaignRecipients.java
@@ -28,7 +28,7 @@
/**
* CreateEmailCampaignRecipients
*/
-@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-02-15T11:12:00.535+05:30")
+@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-03-23T10:53:13.078+05:30")
public class CreateEmailCampaignRecipients {
@SerializedName("exclusionListIds")
private List exclusionListIds = null;
diff --git a/src/main/java/sibModel/CreateEmailCampaignSender.java b/src/main/java/sibModel/CreateEmailCampaignSender.java
index 50553ea..fcc617d 100644
--- a/src/main/java/sibModel/CreateEmailCampaignSender.java
+++ b/src/main/java/sibModel/CreateEmailCampaignSender.java
@@ -26,7 +26,7 @@
/**
* CreateEmailCampaignSender
*/
-@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-02-15T11:12:00.535+05:30")
+@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-03-23T10:53:13.078+05:30")
public class CreateEmailCampaignSender {
@SerializedName("name")
private String name = null;
diff --git a/src/main/java/sibModel/CreateList.java b/src/main/java/sibModel/CreateList.java
index 166a64c..4be7773 100644
--- a/src/main/java/sibModel/CreateList.java
+++ b/src/main/java/sibModel/CreateList.java
@@ -26,7 +26,7 @@
/**
* CreateList
*/
-@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-02-15T11:12:00.535+05:30")
+@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-03-23T10:53:13.078+05:30")
public class CreateList {
@SerializedName("name")
private String name = null;
diff --git a/src/main/java/sibModel/CreateModel.java b/src/main/java/sibModel/CreateModel.java
index 7728204..a73096c 100644
--- a/src/main/java/sibModel/CreateModel.java
+++ b/src/main/java/sibModel/CreateModel.java
@@ -26,7 +26,7 @@
/**
* CreateModel
*/
-@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-02-15T11:12:00.535+05:30")
+@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-03-23T10:53:13.078+05:30")
public class CreateModel {
@SerializedName("id")
private Long id = null;
diff --git a/src/main/java/sibModel/CreateReseller.java b/src/main/java/sibModel/CreateReseller.java
index 2925668..c0671dc 100644
--- a/src/main/java/sibModel/CreateReseller.java
+++ b/src/main/java/sibModel/CreateReseller.java
@@ -26,7 +26,7 @@
/**
* CreateReseller
*/
-@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-02-15T11:12:00.535+05:30")
+@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-03-23T10:53:13.078+05:30")
public class CreateReseller {
@SerializedName("authKey")
private String authKey = null;
diff --git a/src/main/java/sibModel/CreateSender.java b/src/main/java/sibModel/CreateSender.java
index f7542f0..3dcd01a 100644
--- a/src/main/java/sibModel/CreateSender.java
+++ b/src/main/java/sibModel/CreateSender.java
@@ -29,7 +29,7 @@
/**
* CreateSender
*/
-@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-02-15T11:12:00.535+05:30")
+@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-03-23T10:53:13.078+05:30")
public class CreateSender {
@SerializedName("name")
private String name = null;
diff --git a/src/main/java/sibModel/CreateSenderIps.java b/src/main/java/sibModel/CreateSenderIps.java
index 1adc8b5..4d66575 100644
--- a/src/main/java/sibModel/CreateSenderIps.java
+++ b/src/main/java/sibModel/CreateSenderIps.java
@@ -26,7 +26,7 @@
/**
* CreateSenderIps
*/
-@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-02-15T11:12:00.535+05:30")
+@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-03-23T10:53:13.078+05:30")
public class CreateSenderIps {
@SerializedName("ip")
private String ip = null;
diff --git a/src/main/java/sibModel/CreateSenderModel.java b/src/main/java/sibModel/CreateSenderModel.java
index d69909d..acec68c 100644
--- a/src/main/java/sibModel/CreateSenderModel.java
+++ b/src/main/java/sibModel/CreateSenderModel.java
@@ -26,7 +26,7 @@
/**
* CreateSenderModel
*/
-@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-02-15T11:12:00.535+05:30")
+@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-03-23T10:53:13.078+05:30")
public class CreateSenderModel {
@SerializedName("id")
private Long id = null;
diff --git a/src/main/java/sibModel/CreateSmsCampaign.java b/src/main/java/sibModel/CreateSmsCampaign.java
index 89cdce9..6851e7b 100644
--- a/src/main/java/sibModel/CreateSmsCampaign.java
+++ b/src/main/java/sibModel/CreateSmsCampaign.java
@@ -28,7 +28,7 @@
/**
* CreateSmsCampaign
*/
-@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-02-15T11:12:00.535+05:30")
+@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-03-23T10:53:13.078+05:30")
public class CreateSmsCampaign {
@SerializedName("name")
private String name = null;
diff --git a/src/main/java/sibModel/CreateSmsCampaignRecipients.java b/src/main/java/sibModel/CreateSmsCampaignRecipients.java
index f261678..6bc6918 100644
--- a/src/main/java/sibModel/CreateSmsCampaignRecipients.java
+++ b/src/main/java/sibModel/CreateSmsCampaignRecipients.java
@@ -28,7 +28,7 @@
/**
* CreateSmsCampaignRecipients
*/
-@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-02-15T11:12:00.535+05:30")
+@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-03-23T10:53:13.078+05:30")
public class CreateSmsCampaignRecipients {
@SerializedName("listIds")
private List listIds = new ArrayList();
diff --git a/src/main/java/sibModel/CreateSmtpEmail.java b/src/main/java/sibModel/CreateSmtpEmail.java
index 21c661d..30d0943 100644
--- a/src/main/java/sibModel/CreateSmtpEmail.java
+++ b/src/main/java/sibModel/CreateSmtpEmail.java
@@ -26,7 +26,7 @@
/**
* CreateSmtpEmail
*/
-@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-02-15T11:12:00.535+05:30")
+@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-03-23T10:53:13.078+05:30")
public class CreateSmtpEmail {
@SerializedName("messageId")
private String messageId = null;
diff --git a/src/main/java/sibModel/CreateSmtpTemplate.java b/src/main/java/sibModel/CreateSmtpTemplate.java
index def47e8..418e71c 100644
--- a/src/main/java/sibModel/CreateSmtpTemplate.java
+++ b/src/main/java/sibModel/CreateSmtpTemplate.java
@@ -27,7 +27,7 @@
/**
* CreateSmtpTemplate
*/
-@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-02-15T11:12:00.535+05:30")
+@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-03-23T10:53:13.078+05:30")
public class CreateSmtpTemplate {
@SerializedName("tag")
private String tag = null;
diff --git a/src/main/java/sibModel/CreateSmtpTemplateSender.java b/src/main/java/sibModel/CreateSmtpTemplateSender.java
index fe3216b..b013d8f 100644
--- a/src/main/java/sibModel/CreateSmtpTemplateSender.java
+++ b/src/main/java/sibModel/CreateSmtpTemplateSender.java
@@ -26,7 +26,7 @@
/**
* CreateSmtpTemplateSender
*/
-@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-02-15T11:12:00.535+05:30")
+@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-03-23T10:53:13.078+05:30")
public class CreateSmtpTemplateSender {
@SerializedName("name")
private String name = null;
diff --git a/src/main/java/sibModel/CreateUpdateFolder.java b/src/main/java/sibModel/CreateUpdateFolder.java
index 96fd4cc..d78740c 100644
--- a/src/main/java/sibModel/CreateUpdateFolder.java
+++ b/src/main/java/sibModel/CreateUpdateFolder.java
@@ -26,7 +26,7 @@
/**
* CreateUpdateFolder
*/
-@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-02-15T11:12:00.535+05:30")
+@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-03-23T10:53:13.078+05:30")
public class CreateUpdateFolder {
@SerializedName("name")
private String name = null;
diff --git a/src/main/java/sibModel/CreateWebhook.java b/src/main/java/sibModel/CreateWebhook.java
index 1477292..df7e321 100644
--- a/src/main/java/sibModel/CreateWebhook.java
+++ b/src/main/java/sibModel/CreateWebhook.java
@@ -28,7 +28,7 @@
/**
* CreateWebhook
*/
-@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-02-15T11:12:00.535+05:30")
+@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-03-23T10:53:13.078+05:30")
public class CreateWebhook {
@SerializedName("url")
private String url = null;
diff --git a/src/main/java/sibModel/CreatedProcessId.java b/src/main/java/sibModel/CreatedProcessId.java
index b45242f..e56fe18 100644
--- a/src/main/java/sibModel/CreatedProcessId.java
+++ b/src/main/java/sibModel/CreatedProcessId.java
@@ -26,7 +26,7 @@
/**
* CreatedProcessId
*/
-@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-02-15T11:12:00.535+05:30")
+@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-03-23T10:53:13.078+05:30")
public class CreatedProcessId {
@SerializedName("processId")
private Long processId = null;
diff --git a/src/main/java/sibModel/DeleteHardbounces.java b/src/main/java/sibModel/DeleteHardbounces.java
index 2dcb2ef..67591ea 100644
--- a/src/main/java/sibModel/DeleteHardbounces.java
+++ b/src/main/java/sibModel/DeleteHardbounces.java
@@ -27,7 +27,7 @@
/**
* DeleteHardbounces
*/
-@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-02-15T11:12:00.535+05:30")
+@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-03-23T10:53:13.078+05:30")
public class DeleteHardbounces {
@SerializedName("startDate")
private LocalDate startDate = null;
diff --git a/src/main/java/sibModel/EmailExportRecipients.java b/src/main/java/sibModel/EmailExportRecipients.java
index 6d6b2bc..0dc27e5 100644
--- a/src/main/java/sibModel/EmailExportRecipients.java
+++ b/src/main/java/sibModel/EmailExportRecipients.java
@@ -26,7 +26,7 @@
/**
* EmailExportRecipients
*/
-@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-02-15T11:12:00.535+05:30")
+@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-03-23T10:53:13.078+05:30")
public class EmailExportRecipients {
@SerializedName("notifyURL")
private String notifyURL = null;
diff --git a/src/main/java/sibModel/ErrorModel.java b/src/main/java/sibModel/ErrorModel.java
index 8a9b45d..c04673f 100644
--- a/src/main/java/sibModel/ErrorModel.java
+++ b/src/main/java/sibModel/ErrorModel.java
@@ -26,7 +26,7 @@
/**
* ErrorModel
*/
-@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-02-15T11:12:00.535+05:30")
+@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-03-23T10:53:13.078+05:30")
public class ErrorModel {
/**
* Error code displayed in case of a failure
diff --git a/src/main/java/sibModel/GetAccount.java b/src/main/java/sibModel/GetAccount.java
index 3483ae9..94db215 100644
--- a/src/main/java/sibModel/GetAccount.java
+++ b/src/main/java/sibModel/GetAccount.java
@@ -33,7 +33,7 @@
/**
* GetAccount
*/
-@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-02-15T11:12:00.535+05:30")
+@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-03-23T10:53:13.078+05:30")
public class GetAccount {
@SerializedName("email")
private String email = null;
diff --git a/src/main/java/sibModel/GetAccountMarketingAutomation.java b/src/main/java/sibModel/GetAccountMarketingAutomation.java
index 0ef47b4..f4bae2c 100644
--- a/src/main/java/sibModel/GetAccountMarketingAutomation.java
+++ b/src/main/java/sibModel/GetAccountMarketingAutomation.java
@@ -26,7 +26,7 @@
/**
* GetAccountMarketingAutomation
*/
-@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-02-15T11:12:00.535+05:30")
+@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-03-23T10:53:13.078+05:30")
public class GetAccountMarketingAutomation {
@SerializedName("key")
private String key = null;
diff --git a/src/main/java/sibModel/GetAccountPlan.java b/src/main/java/sibModel/GetAccountPlan.java
index 1cd7cc3..888c5a4 100644
--- a/src/main/java/sibModel/GetAccountPlan.java
+++ b/src/main/java/sibModel/GetAccountPlan.java
@@ -27,7 +27,7 @@
/**
* GetAccountPlan
*/
-@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-02-15T11:12:00.535+05:30")
+@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-03-23T10:53:13.078+05:30")
public class GetAccountPlan {
/**
* Displays the plan type of the user
diff --git a/src/main/java/sibModel/GetAccountRelay.java b/src/main/java/sibModel/GetAccountRelay.java
index 2e7a25c..8431aae 100644
--- a/src/main/java/sibModel/GetAccountRelay.java
+++ b/src/main/java/sibModel/GetAccountRelay.java
@@ -28,7 +28,7 @@
* Information about your SMTP account
*/
@ApiModel(description = "Information about your SMTP account")
-@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-02-15T11:12:00.535+05:30")
+@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-03-23T10:53:13.078+05:30")
public class GetAccountRelay {
@SerializedName("enabled")
private Boolean enabled = null;
diff --git a/src/main/java/sibModel/GetAccountRelayData.java b/src/main/java/sibModel/GetAccountRelayData.java
index f32c4e9..ddc5257 100644
--- a/src/main/java/sibModel/GetAccountRelayData.java
+++ b/src/main/java/sibModel/GetAccountRelayData.java
@@ -27,7 +27,7 @@
* Data regarding the SMTP account
*/
@ApiModel(description = "Data regarding the SMTP account")
-@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-02-15T11:12:00.535+05:30")
+@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-03-23T10:53:13.078+05:30")
public class GetAccountRelayData {
@SerializedName("userName")
private String userName = null;
diff --git a/src/main/java/sibModel/GetAggregatedReport.java b/src/main/java/sibModel/GetAggregatedReport.java
index 3064f62..305db1f 100644
--- a/src/main/java/sibModel/GetAggregatedReport.java
+++ b/src/main/java/sibModel/GetAggregatedReport.java
@@ -26,7 +26,7 @@
/**
* GetAggregatedReport
*/
-@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-02-15T11:12:00.535+05:30")
+@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-03-23T10:53:13.078+05:30")
public class GetAggregatedReport {
@SerializedName("range")
private String range = null;
diff --git a/src/main/java/sibModel/GetAttributes.java b/src/main/java/sibModel/GetAttributes.java
index 426c68a..2e65c30 100644
--- a/src/main/java/sibModel/GetAttributes.java
+++ b/src/main/java/sibModel/GetAttributes.java
@@ -29,7 +29,7 @@
/**
* GetAttributes
*/
-@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-02-15T11:12:00.535+05:30")
+@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-03-23T10:53:13.078+05:30")
public class GetAttributes {
@SerializedName("attributes")
private List attributes = new ArrayList();
diff --git a/src/main/java/sibModel/GetAttributesAttributes.java b/src/main/java/sibModel/GetAttributesAttributes.java
index 238cd0a..ea57d08 100644
--- a/src/main/java/sibModel/GetAttributesAttributes.java
+++ b/src/main/java/sibModel/GetAttributesAttributes.java
@@ -29,7 +29,7 @@
/**
* GetAttributesAttributes
*/
-@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-02-15T11:12:00.535+05:30")
+@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-03-23T10:53:13.078+05:30")
public class GetAttributesAttributes {
@SerializedName("name")
private String name = null;
diff --git a/src/main/java/sibModel/GetAttributesEnumeration.java b/src/main/java/sibModel/GetAttributesEnumeration.java
index c269c2d..1f21b98 100644
--- a/src/main/java/sibModel/GetAttributesEnumeration.java
+++ b/src/main/java/sibModel/GetAttributesEnumeration.java
@@ -26,7 +26,7 @@
/**
* GetAttributesEnumeration
*/
-@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-02-15T11:12:00.535+05:30")
+@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-03-23T10:53:13.078+05:30")
public class GetAttributesEnumeration {
@SerializedName("value")
private Long value = null;
diff --git a/src/main/java/sibModel/GetCampaignOverview.java b/src/main/java/sibModel/GetCampaignOverview.java
index c35fe48..8cb8a45 100644
--- a/src/main/java/sibModel/GetCampaignOverview.java
+++ b/src/main/java/sibModel/GetCampaignOverview.java
@@ -27,7 +27,7 @@
/**
* GetCampaignOverview
*/
-@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-02-15T11:12:00.535+05:30")
+@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-03-23T10:53:13.078+05:30")
public class GetCampaignOverview {
@SerializedName("id")
private Long id = null;
diff --git a/src/main/java/sibModel/GetCampaignRecipients.java b/src/main/java/sibModel/GetCampaignRecipients.java
index 5a6037f..edc618e 100644
--- a/src/main/java/sibModel/GetCampaignRecipients.java
+++ b/src/main/java/sibModel/GetCampaignRecipients.java
@@ -28,7 +28,7 @@
/**
* GetCampaignRecipients
*/
-@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-02-15T11:12:00.535+05:30")
+@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-03-23T10:53:13.078+05:30")
public class GetCampaignRecipients {
@SerializedName("lists")
private List lists = new ArrayList();
diff --git a/src/main/java/sibModel/GetCampaignStats.java b/src/main/java/sibModel/GetCampaignStats.java
index c273cff..71b58dd 100644
--- a/src/main/java/sibModel/GetCampaignStats.java
+++ b/src/main/java/sibModel/GetCampaignStats.java
@@ -26,7 +26,7 @@
/**
* GetCampaignStats
*/
-@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-02-15T11:12:00.535+05:30")
+@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-03-23T10:53:13.078+05:30")
public class GetCampaignStats {
@SerializedName("listId")
private Long listId = null;
diff --git a/src/main/java/sibModel/GetChildInfo.java b/src/main/java/sibModel/GetChildInfo.java
index 6884b2d..8b716db 100644
--- a/src/main/java/sibModel/GetChildInfo.java
+++ b/src/main/java/sibModel/GetChildInfo.java
@@ -32,7 +32,7 @@
/**
* GetChildInfo
*/
-@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-02-15T11:12:00.535+05:30")
+@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-03-23T10:53:13.078+05:30")
public class GetChildInfo {
@SerializedName("email")
private String email = null;
diff --git a/src/main/java/sibModel/GetChildInfoApiKeys.java b/src/main/java/sibModel/GetChildInfoApiKeys.java
index 577342c..f209cdc 100644
--- a/src/main/java/sibModel/GetChildInfoApiKeys.java
+++ b/src/main/java/sibModel/GetChildInfoApiKeys.java
@@ -31,7 +31,7 @@
* API Keys associated to child account
*/
@ApiModel(description = "API Keys associated to child account")
-@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-02-15T11:12:00.535+05:30")
+@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-03-23T10:53:13.078+05:30")
public class GetChildInfoApiKeys {
@SerializedName("v2")
private List v2 = new ArrayList();
diff --git a/src/main/java/sibModel/GetChildInfoApiKeysV2.java b/src/main/java/sibModel/GetChildInfoApiKeysV2.java
index 5662b1a..f6efc39 100644
--- a/src/main/java/sibModel/GetChildInfoApiKeysV2.java
+++ b/src/main/java/sibModel/GetChildInfoApiKeysV2.java
@@ -26,7 +26,7 @@
/**
* GetChildInfoApiKeysV2
*/
-@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-02-15T11:12:00.535+05:30")
+@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-03-23T10:53:13.078+05:30")
public class GetChildInfoApiKeysV2 {
@SerializedName("name")
private String name = null;
diff --git a/src/main/java/sibModel/GetChildInfoApiKeysV3.java b/src/main/java/sibModel/GetChildInfoApiKeysV3.java
index 7580310..38b200f 100644
--- a/src/main/java/sibModel/GetChildInfoApiKeysV3.java
+++ b/src/main/java/sibModel/GetChildInfoApiKeysV3.java
@@ -26,7 +26,7 @@
/**
* GetChildInfoApiKeysV3
*/
-@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-02-15T11:12:00.535+05:30")
+@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-03-23T10:53:13.078+05:30")
public class GetChildInfoApiKeysV3 {
@SerializedName("name")
private String name = null;
diff --git a/src/main/java/sibModel/GetChildInfoCredits.java b/src/main/java/sibModel/GetChildInfoCredits.java
index fa26da6..78bc1aa 100644
--- a/src/main/java/sibModel/GetChildInfoCredits.java
+++ b/src/main/java/sibModel/GetChildInfoCredits.java
@@ -27,7 +27,7 @@
* Credits available for your child
*/
@ApiModel(description = "Credits available for your child")
-@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-02-15T11:12:00.535+05:30")
+@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-03-23T10:53:13.078+05:30")
public class GetChildInfoCredits {
@SerializedName("emailCredits")
private Long emailCredits = null;
diff --git a/src/main/java/sibModel/GetChildInfoStatistics.java b/src/main/java/sibModel/GetChildInfoStatistics.java
index e0393f2..e9a4ebe 100644
--- a/src/main/java/sibModel/GetChildInfoStatistics.java
+++ b/src/main/java/sibModel/GetChildInfoStatistics.java
@@ -27,7 +27,7 @@
* Statistics about your child account activity
*/
@ApiModel(description = "Statistics about your child account activity")
-@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-02-15T11:12:00.535+05:30")
+@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-03-23T10:53:13.078+05:30")
public class GetChildInfoStatistics {
@SerializedName("previousMonthTotalSent")
private Long previousMonthTotalSent = null;
diff --git a/src/main/java/sibModel/GetChildrenList.java b/src/main/java/sibModel/GetChildrenList.java
index e086143..e7bb45d 100644
--- a/src/main/java/sibModel/GetChildrenList.java
+++ b/src/main/java/sibModel/GetChildrenList.java
@@ -28,7 +28,7 @@
/**
* GetChildrenList
*/
-@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-02-15T11:12:00.535+05:30")
+@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-03-23T10:53:13.078+05:30")
public class GetChildrenList {
@SerializedName("children")
private List