Skip to content

Commit 242c6eb

Browse files
committed
new changes
1 parent cea3343 commit 242c6eb

File tree

333 files changed

+16235
-5107
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

333 files changed

+16235
-5107
lines changed

.DS_Store

8 KB
Binary file not shown.

.swagger-codegen/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.4.9
1+
2.4.26

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add this dependency to your project's POM:
2222
<dependency>
2323
<groupId>com.sendinblue</groupId>
2424
<artifactId>sib-api-v3-sdk</artifactId>
25-
<version>5.3.0</version>
25+
<version>6.0.0</version>
2626
<scope>compile</scope>
2727
</dependency>
2828
```
@@ -32,7 +32,7 @@ Add this dependency to your project's POM:
3232
Add this dependency to your project's build file:
3333

3434
```groovy
35-
compile "com.sendinblue:sib-api-v3-sdk:5.3.0"
35+
compile "com.sendinblue:sib-api-v3-sdk:6.0.0"
3636
```
3737

3838
### Others
@@ -45,7 +45,7 @@ mvn package
4545

4646
Then manually install the following JARs:
4747

48-
* `target/sib-api-v3-sdk-5.3.0.jar`
48+
* `target/sib-api-v3-sdk-6.0.0.jar`
4949
* `target/lib/*.jar`
5050

5151
## Getting Started

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apply plugin: 'idea'
22
apply plugin: 'eclipse'
33

44
group = 'com.sendinblue'
5-
version = '5.3.0'
5+
version = '6.0.0'
66

77
buildscript {
88
repositories {

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ lazy val root = (project in file(".")).
22
settings(
33
organization := "com.sendinblue",
44
name := "sib-api-v3-sdk",
5-
version := "5.3.0",
5+
version := "6.0.0",
66
scalaVersion := "2.11.4",
77
scalacOptions ++= Seq("-feature"),
88
javacOptions in compile ++= Seq("-Xlint:deprecation"),

docs/AccountApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ apiKey.setApiKey("YOUR API KEY");
3232

3333
// Configure API key authorization: partner-key
3434
ApiKeyAuth partnerKey = (ApiKeyAuth) defaultClient.getAuthentication("partner-key");
35-
partnerKey.setApiKey("YOUR PARTNER KEY");
35+
partnerKey.setApiKey("YOUR API KEY");
3636
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
3737
//partnerKey.setApiKeyPrefix("Token");
3838

docs/AttributesApi.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ apiKey.setApiKey("YOUR API KEY");
3535

3636
// Configure API key authorization: partner-key
3737
ApiKeyAuth partnerKey = (ApiKeyAuth) defaultClient.getAuthentication("partner-key");
38-
partnerKey.setApiKey("YOUR PARTNER KEY");
38+
partnerKey.setApiKey("YOUR API KEY");
3939
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
4040
//partnerKey.setApiKeyPrefix("Token");
4141

@@ -97,7 +97,7 @@ apiKey.setApiKey("YOUR API KEY");
9797

9898
// Configure API key authorization: partner-key
9999
ApiKeyAuth partnerKey = (ApiKeyAuth) defaultClient.getAuthentication("partner-key");
100-
partnerKey.setApiKey("YOUR PARTNER KEY");
100+
partnerKey.setApiKey("YOUR API KEY");
101101
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
102102
//partnerKey.setApiKeyPrefix("Token");
103103

@@ -157,7 +157,7 @@ apiKey.setApiKey("YOUR API KEY");
157157

158158
// Configure API key authorization: partner-key
159159
ApiKeyAuth partnerKey = (ApiKeyAuth) defaultClient.getAuthentication("partner-key");
160-
partnerKey.setApiKey("YOUR PARTNER KEY");
160+
partnerKey.setApiKey("YOUR API KEY");
161161
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
162162
//partnerKey.setApiKeyPrefix("Token");
163163

@@ -212,7 +212,7 @@ apiKey.setApiKey("YOUR API KEY");
212212

213213
// Configure API key authorization: partner-key
214214
ApiKeyAuth partnerKey = (ApiKeyAuth) defaultClient.getAuthentication("partner-key");
215-
partnerKey.setApiKey("YOUR PARTNER KEY");
215+
partnerKey.setApiKey("YOUR API KEY");
216216
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
217217
//partnerKey.setApiKeyPrefix("Token");
218218

docs/Body.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
2+
# Body
3+
4+
## Properties
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**name** | **String** | Name of task |
8+
**duration** | **Long** | Duration of task | [optional]
9+
**taskTypeId** | **String** | Id for type of task e.g Call / Email / Meeting etc. |
10+
**date** | [**OffsetDateTime**] | Task date/time |
11+
**notes** | **String** | Notes added to a task | [optional]
12+
**done** | **Boolean** | Task marked as done | [optional]
13+
**assignToId** | **String** | User id to whom task is assigned | [optional]
14+
**contactsIds** | **List&lt;Integer&gt;** | Contact ids for contacts linked to this task | [optional]
15+
**dealsIds** | **List&lt;String&gt;** | Deal ids for deals a task is linked to | [optional]
16+
**companiesIds** | **List&lt;String&gt;** | Companies ids for companies a task is linked to | [optional]
17+
**reminder** | [**TaskReminder**](TaskReminder.md) | | [optional]
18+
19+
20+

docs/Body1.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
2+
# Body1
3+
4+
## Properties
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**name** | **String** | Name of task |
8+
**duration** | **Integer** | Duration of task | [optional]
9+
**taskTypeId** | **String** | Id for type of task e.g Call / Email / Meeting etc. |
10+
**date** | [**OffsetDateTime**] | Task date/time |
11+
**notes** | **String** | Notes added to a task | [optional]
12+
**done** | **Boolean** | Task marked as done | [optional]
13+
**assignToId** | **String** | User id to whom task is assigned | [optional]
14+
**contactsIds** | **List&lt;Integer&gt;** | Contact ids for contacts linked to this task | [optional]
15+
**dealsIds** | **List&lt;String&gt;** | Deal ids for deals a task is linked to | [optional]
16+
**companiesIds** | **List&lt;String&gt;** | Companies ids for companies a task is linked to | [optional]
17+
**reminder** | [**TaskReminder**](TaskReminder.md) | | [optional]
18+
19+
20+

docs/Contact.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
2+
# Contact
3+
4+
## Properties
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**virtualNextTask** | **Object** | Next incomplete task of contact | [optional]
8+
**email** | **String** | Contact email |
9+
**assignToId** | **String** | User id to whom contact is assigned | [optional]
10+
**contactsId** | **Integer** | Contact id | [optional]
11+
**crmLists** | **Object** | CRM lists in which contact is added |
12+
**attributes** | **Object** | Contact attributes e.g firstname / lastname / SMS etc. | [optional]
13+
**createdAt** | [**OffsetDateTime**] | Contact created date/time | [optional]
14+
**updatedAt** | [**OffsetDateTime**] | Contact updated date/time | [optional]
15+
16+
17+

0 commit comments

Comments
 (0)