Skip to content

Commit 5776b69

Browse files
authored
Merge pull request #18 from sendinblue/feature_javawrapper_update
Feature javawrapper update
2 parents 8b462a3 + 7d599bc commit 5776b69

File tree

250 files changed

+2205
-1130
lines changed

Some content is hidden

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

250 files changed

+2205
-1130
lines changed

.swagger-codegen/VERSION

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

README.md

Lines changed: 73 additions & 69 deletions
Large diffs are not rendered by default.

build.gradle

Lines changed: 2 additions & 2 deletions
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 = '4.0.0'
5+
version = '4.1.0'
66

77
buildscript {
88
repositories {
@@ -94,7 +94,7 @@ if(hasProperty('target') && target == 'android') {
9494
}
9595

9696
dependencies {
97-
compile 'io.swagger:swagger-annotations:1.5.15'
97+
compile 'io.swagger:swagger-annotations:1.5.17'
9898
compile 'com.squareup.okhttp:okhttp:2.7.5'
9999
compile 'com.squareup.okhttp:logging-interceptor:2.7.5'
100100
compile 'com.google.code.gson:gson:2.8.1'

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 := "4.0.0",
5+
version := "4.1.0",
66
scalaVersion := "2.11.4",
77
scalacOptions ++= Seq("-feature"),
88
javacOptions in compile ++= Seq("-Xlint:deprecation"),

docs/AccountApi.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ All URIs are relative to *https://api.sendinblue.com/v3*
44

55
Method | HTTP request | Description
66
------------- | ------------- | -------------
7-
[**getAccount**](AccountApi.md#getAccount) | **GET** /account | Get your account informations, plans and credits details
7+
[**getAccount**](AccountApi.md#getAccount) | **GET** /account | Get your account information, plan and credits details
88

99

1010
<a name="getAccount"></a>
1111
# **getAccount**
1212
> GetAccount getAccount()
1313
14-
Get your account informations, plans and credits details
14+
Get your account information, plan and credits details
1515

1616
### Example
1717
```java

docs/AddContactToList.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
## Properties
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7-
**emails** | **List&lt;String&gt;** | Emails to add to a list | [optional]
7+
**emails** | **List&lt;String&gt;** | Emails to add to a list. You can pass a maximum of 150 emails for addition in one request. If you need to add the emails in bulk, please prefer /contacts/import api. | [optional]
88

99

1010

docs/AttributesApi.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,17 @@ All URIs are relative to *https://api.sendinblue.com/v3*
44

55
Method | HTTP request | Description
66
------------- | ------------- | -------------
7-
[**createAttribute**](AttributesApi.md#createAttribute) | **POST** /contacts/attributes/{attributeCategory}/{attributeName} | Creates contact attribute
8-
[**deleteAttribute**](AttributesApi.md#deleteAttribute) | **DELETE** /contacts/attributes/{attributeCategory}/{attributeName} | Deletes an attribute
9-
[**getAttributes**](AttributesApi.md#getAttributes) | **GET** /contacts/attributes | Lists all attributes
10-
[**updateAttribute**](AttributesApi.md#updateAttribute) | **PUT** /contacts/attributes/{attributeCategory}/{attributeName} | Updates contact attribute
7+
[**createAttribute**](AttributesApi.md#createAttribute) | **POST** /contacts/attributes/{attributeCategory}/{attributeName} | Create contact attribute
8+
[**deleteAttribute**](AttributesApi.md#deleteAttribute) | **DELETE** /contacts/attributes/{attributeCategory}/{attributeName} | Delete an attribute
9+
[**getAttributes**](AttributesApi.md#getAttributes) | **GET** /contacts/attributes | List all attributes
10+
[**updateAttribute**](AttributesApi.md#updateAttribute) | **PUT** /contacts/attributes/{attributeCategory}/{attributeName} | Update contact attribute
1111

1212

1313
<a name="createAttribute"></a>
1414
# **createAttribute**
1515
> createAttribute(attributeCategory, attributeName, createAttribute)
1616
17-
Creates contact attribute
17+
Create contact attribute
1818

1919
### Example
2020
```java
@@ -76,7 +76,7 @@ null (empty response body)
7676
# **deleteAttribute**
7777
> deleteAttribute(attributeCategory, attributeName)
7878
79-
Deletes an attribute
79+
Delete an attribute
8080

8181
### Example
8282
```java
@@ -136,7 +136,7 @@ null (empty response body)
136136
# **getAttributes**
137137
> GetAttributes getAttributes()
138138
139-
Lists all attributes
139+
List all attributes
140140

141141
### Example
142142
```java
@@ -191,7 +191,7 @@ This endpoint does not need any parameter.
191191
# **updateAttribute**
192192
> updateAttribute(attributeCategory, attributeName, updateAttribute)
193193
194-
Updates contact attribute
194+
Update contact attribute
195195

196196
### Example
197197
```java

0 commit comments

Comments
 (0)