Skip to content

Commit c70b66c

Browse files
authored
Merge pull request #9 from sendinblue/feature_mixed-spec-updtaes
Mixed spec updates
2 parents 59b0a89 + f8503a9 commit c70b66c

File tree

209 files changed

+593
-583
lines changed

Some content is hidden

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

209 files changed

+593
-583
lines changed

.travis.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,14 @@
22
# Generated by: https://github.com/swagger-api/swagger-codegen.git
33
#
44
language: java
5-
jdk:
6-
- oraclejdk8
7-
- oraclejdk7
5+
86
before_install:
97
# ensure gradlew has proper permission
108
- chmod a+x ./gradlew
9+
10+
jdk:
11+
- oraclejdk8
12+
1113
script:
1214
# test using maven
1315
- mvn test

README.md

+3-4
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>2.0.1</version>
25+
<version>3.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:2.0.1"
35+
compile "com.sendinblue:sib-api-v3-sdk:3.0.0"
3636
```
3737

3838
### Others
@@ -45,7 +45,7 @@ At first generate the JAR by executing:
4545

4646
Then manually install the following JARs:
4747

48-
* target/sib-api-v3-sdk-2.0.1.jar
48+
* target/sib-api-v3-sdk-3.0.0.jar
4949
* target/lib/*.jar
5050

5151
## Getting Started
@@ -256,7 +256,6 @@ Class | Method | HTTP request | Description
256256
- [GetEmailEventReportEvents](docs/GetEmailEventReportEvents.md)
257257
- [GetExtendedCampaignOverviewSender](docs/GetExtendedCampaignOverviewSender.md)
258258
- [GetExtendedCampaignStats](docs/GetExtendedCampaignStats.md)
259-
- [GetExtendedCampaignStatsLinksStats](docs/GetExtendedCampaignStatsLinksStats.md)
260259
- [GetExtendedClientAddress](docs/GetExtendedClientAddress.md)
261260
- [GetExtendedContactDetailsStatistics](docs/GetExtendedContactDetailsStatistics.md)
262261
- [GetExtendedContactDetailsStatisticsClicked](docs/GetExtendedContactDetailsStatisticsClicked.md)

build.gradle

+6-5
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 = '2.0.1'
5+
version = '3.0.0'
66

77
buildscript {
88
repositories {
@@ -32,8 +32,8 @@ if(hasProperty('target') && target == 'android') {
3232
targetSdkVersion 25
3333
}
3434
compileOptions {
35-
sourceCompatibility JavaVersion.VERSION_1_7
36-
targetCompatibility JavaVersion.VERSION_1_7
35+
sourceCompatibility JavaVersion.VERSION_1_8
36+
targetCompatibility JavaVersion.VERSION_1_8
3737
}
3838

3939
// Rename the aar correctly
@@ -78,8 +78,8 @@ if(hasProperty('target') && target == 'android') {
7878
apply plugin: 'java'
7979
apply plugin: 'maven'
8080

81-
sourceCompatibility = JavaVersion.VERSION_1_7
82-
targetCompatibility = JavaVersion.VERSION_1_7
81+
sourceCompatibility = JavaVersion.VERSION_1_8
82+
targetCompatibility = JavaVersion.VERSION_1_8
8383

8484
install {
8585
repositories.mavenInstaller {
@@ -100,5 +100,6 @@ dependencies {
100100
compile 'com.google.code.gson:gson:2.8.1'
101101
compile 'io.gsonfire:gson-fire:1.8.0'
102102
compile 'org.threeten:threetenbp:1.3.5'
103+
compile 'org.apache.commons:commons-lang3:3.0'
103104
testCompile 'junit:junit:4.12'
104105
}

build.sbt

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

docs/CreateAttribute.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
## Properties
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7-
**value** | **String** | Value of the attribute. Use only if the attribute&#39;s category is calculated or global | [optional]
8-
**enumeration** | [**List&lt;CreateAttributeEnumeration&gt;**](CreateAttributeEnumeration.md) | Values that the attribute can take. Use only if the attribute&#39;s category is category | [optional]
9-
**type** | [**TypeEnum**](#TypeEnum) | Type of the attribute. Use only if the attribute&#39;s category is normal, category or transactional ( type &#39;id&#39; only available if the category is &#39;transactional&#39; attribute &amp; type &#39;category&#39; only available if the category is &#39;category&#39; attribute ) | [optional]
7+
**value** | **String** | Value of the attribute. Use only if the attribute&#39;s category is &#39;calculated&#39; or &#39;global&#39; | [optional]
8+
**enumeration** | [**List&lt;CreateAttributeEnumeration&gt;**](CreateAttributeEnumeration.md) | List of values and labels that the attribute can take. Use only if the attribute&#39;s category is \&quot;category\&quot;. For example, [{&#39;value&#39;:1, &#39;label&#39;:&#39;male&#39;}, {&#39;value&#39;:2, &#39;label&#39;:&#39;female&#39;}] | [optional]
9+
**type** | [**TypeEnum**](#TypeEnum) | Type of the attribute. Use only if the attribute&#39;s category is &#39;normal&#39;, &#39;category&#39; or &#39;transactional&#39; ( type &#39;id&#39; is only available if the category is &#39;transactional&#39; attribute &amp; type &#39;category&#39; is only available if the category is &#39;category&#39; attribute ) | [optional]
1010

1111

1212
<a name="TypeEnum"></a>

docs/CreateContact.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
## Properties
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7-
**email** | **String** | Email address of the user. Mandatory if &#x60;attributes.sms&#x60; is not passed | [optional]
8-
**attributes** | **Object** | Values of the attributes to fill. The attributes must exist in you contact database | [optional]
9-
**emailBlacklisted** | **Boolean** | Blacklist the contact for emails (emailBlacklisted &#x3D; true) | [optional]
10-
**smsBlacklisted** | **Boolean** | Blacklist the contact for SMS (smsBlacklisted &#x3D; true) | [optional]
7+
**email** | **String** | Email address of the user. Mandatory if \&quot;sms\&quot; field is not passed in \&quot;attributes\&quot; parameter&#39; | [optional]
8+
**attributes** | **Object** | Pass the set of attributes and their values. These attributes must be present in your SendinBlue account. For eg. {&#39;FNAME&#39;:&#39;Elly&#39;, &#39;LNAME&#39;:&#39;Roger&#39;} | [optional]
9+
**emailBlacklisted** | **Boolean** | Set this field to blacklist the contact for emails (emailBlacklisted &#x3D; true) | [optional]
10+
**smsBlacklisted** | **Boolean** | Set this field to blacklist the contact for SMS (smsBlacklisted &#x3D; true) | [optional]
1111
**listIds** | **List&lt;Long&gt;** | Ids of the lists to add the contact to | [optional]
12-
**updateEnabled** | **Boolean** | Facilitate to update existing contact in same request (updateEnabled &#x3D; true) | [optional]
12+
**updateEnabled** | **Boolean** | Facilitate to update the existing contact in the same request (updateEnabled &#x3D; true) | [optional]
1313
**smtpBlacklistSender** | **List&lt;String&gt;** | SMTP forbidden sender for contact. Use only for email Contact ( only available if updateEnabled &#x3D; true ) | [optional]
1414

1515

docs/CreateEmailCampaign.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Name | Type | Description | Notes
99
**name** | **String** | Name of the campaign |
1010
**htmlContent** | **String** | Mandatory if htmlUrl is empty. Body of the message (HTML) | [optional]
1111
**htmlUrl** | **String** | Mandatory if htmlContent is empty. Url to the message (HTML) | [optional]
12-
**scheduledAt** | [**OffsetDateTime**](OffsetDateTime.md) | Sending UTC date-time (YYYY-MM-DDTHH:mm:ss.SSSZ). Prefer to pass your timezone in date-time format for accurate result. | [optional]
12+
**scheduledAt** | [**OffsetDateTime**] | Sending UTC date-time (YYYY-MM-DDTHH:mm:ss.SSSZ). Prefer to pass your timezone in date-time format for accurate result. | [optional]
1313
**subject** | **String** | Subject of the campaign |
1414
**replyTo** | **String** | Email on which the campaign recipients will be able to reply to | [optional]
1515
**toField** | **String** | To personalize the «To» Field, e.g. if you want to include the first name and last name of your recipient, use {FNAME} {LNAME}. These attributes must already exist in your contact database | [optional]

docs/CreateList.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**name** | **String** | Name of the list |
8-
**folderId** | **Long** | Id of the folder in which to create the list |
8+
**folderId** | **Long** | Id of the parent folder in which this list is to be created |
99

1010

1111

docs/CreateSmsCampaign.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Name | Type | Description | Notes
88
**sender** | **String** | Name of the sender. The number of characters is limited to 11 |
99
**content** | **String** | Content of the message. The maximum characters used per SMS is 160, if used more than that, it will be counted as more than one SMS | [optional]
1010
**recipients** | [**CreateSmsCampaignRecipients**](CreateSmsCampaignRecipients.md) | | [optional]
11-
**scheduledAt** | [**OffsetDateTime**](OffsetDateTime.md) | UTC date-time on which the campaign has to run (YYYY-MM-DDTHH:mm:ss.SSSZ). Prefer to pass your timezone in date-time format for accurate result. | [optional]
11+
**scheduledAt** | [**OffsetDateTime**] | UTC date-time on which the campaign has to run (YYYY-MM-DDTHH:mm:ss.SSSZ). Prefer to pass your timezone in date-time format for accurate result. | [optional]
1212

1313

1414

docs/DeleteHardbounces.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
## Properties
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7-
**startDate** | **LocalDate** | Starting date (YYYY-MM-DD) of the period from which the hardbounces will be deleted. Must be lower than equal to endDate | [optional]
8-
**endDate** | **LocalDate** | Ending date (YYYY-MM-DD) of the period from which the hardbounces will be deleted. Must be greater than equal to startDate | [optional]
7+
**startDate** | **LocalDate** | Starting date (YYYY-MM-DD) of the time period for deletion. The hardbounces occurred after this date will be deleted. Must be less than or equal to the endDate | [optional]
8+
**endDate** | **LocalDate** | Ending date (YYYY-MM-DD) of the time period for deletion. The hardbounces until this date will be deleted. Must be greater than or equal to the startDate | [optional]
99
**contactEmail** | **String** | Target a specific email address | [optional]
1010

1111

docs/GetAccountPlan.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ Name | Type | Description | Notes
77
**type** | [**TypeEnum**](#TypeEnum) | Displays the plan type of the user |
88
**creditsType** | [**CreditsTypeEnum**](#CreditsTypeEnum) | This is the type of the credit, \&quot;Send Limit\&quot; is one of the possible types of credit of a user. \&quot;Send Limit\&quot; implies the total number of emails you can send to the subscribers in your account. |
99
**credits** | **Float** | Remaining credits of the user |
10-
**startDate** | **LocalDate** | Date of the period from which the plan will start (only available for \&quot;subscription\&quot;, \&quot;unlimited\&quot; and \&quot;reseller\&quot; plan type) | [optional]
11-
**endDate** | **LocalDate** | Date of the period from which the plan will end (only available for \&quot;subscription\&quot;, \&quot;unlimited\&quot; and \&quot;reseller\&quot; plan type) | [optional]
10+
**startDate** | **LocalDate** | Date of the period from which the plan will start (only available for \&quot;subscription\&quot; and \&quot;reseller\&quot; plan type) | [optional]
11+
**endDate** | **LocalDate** | Date of the period from which the plan will end (only available for \&quot;subscription\&quot; and \&quot;reseller\&quot; plan type) | [optional]
1212
**userLimit** | **Integer** | Only in case of reseller account. It implies the total number of child accounts you can add to your account. | [optional]
1313

1414

@@ -17,7 +17,6 @@ Name | Type | Description | Notes
1717
Name | Value
1818
---- | -----
1919
PAYASYOUGO | &quot;payAsYouGo&quot;
20-
UNLIMITED | &quot;unlimited&quot;
2120
FREE | &quot;free&quot;
2221
SUBSCRIPTION | &quot;subscription&quot;
2322
SMS | &quot;sms&quot;

docs/GetCampaignOverview.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Name | Type | Description | Notes
99
**subject** | **String** | Subject of the campaign |
1010
**type** | [**TypeEnum**](#TypeEnum) | Type of campaign |
1111
**status** | [**StatusEnum**](#StatusEnum) | Status of the campaign |
12-
**scheduledAt** | [**OffsetDateTime**](OffsetDateTime.md) | UTC date-time on which campaign is scheduled (YYYY-MM-DDTHH:mm:ss.SSSZ) | [optional]
12+
**scheduledAt** | [**OffsetDateTime**] | UTC date-time on which campaign is scheduled (YYYY-MM-DDTHH:mm:ss.SSSZ) | [optional]
1313

1414

1515
<a name="TypeEnum"></a>

docs/GetCampaignStats.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
## Properties
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7-
**listId** | **Long** | List Id of email campaign (only in case of get email campaign(s)) | [optional]
7+
**listId** | **Long** | List Id of email campaign (only in case of get email campaign(s)(not for global stats)) | [optional]
88
**uniqueClicks** | **Long** | Number of unique clicks for the campaign |
9-
**clickers** | **Long** | Number of clicks for the campaign |
9+
**clickers** | **Long** | Number of total clicks for the campaign |
1010
**complaints** | **Long** | Number of complaints (Spam reports) for the campaign |
1111
**delivered** | **Long** | Number of delivered emails for the campaign |
1212
**sent** | **Long** | Number of sent emails for the campaign |
@@ -15,7 +15,7 @@ Name | Type | Description | Notes
1515
**uniqueViews** | **Long** | Number of unique openings for the campaign |
1616
**unsubscriptions** | **Long** | Number of unsubscription for the campaign |
1717
**viewed** | **Long** | Number of openings for the campaign |
18-
**deferred** | **Long** | Number of deferred emails for the campaign |
18+
**deferred** | **Long** | Number of deferred emails for the campaign | [optional]
1919

2020

2121

docs/GetContactCampaignStatsOpened.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**campaignId** | **Long** | ID of the campaign which generated the event |
88
**count** | **Long** | Number of openings of the campaign |
9-
**eventTime** | [**OffsetDateTime**](OffsetDateTime.md) | UTC date-time of the event |
9+
**eventTime** | [**OffsetDateTime**] | UTC date-time of the event |
1010
**ip** | **String** | IP from which the user has opened the campaign |
1111

1212

docs/GetContactDetails.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ Name | Type | Description | Notes
88
**id** | **Long** | ID of the contact for which you requested the details |
99
**emailBlacklisted** | **Boolean** | Blacklist status for email campaigns (true&#x3D;blacklisted, false&#x3D;not blacklisted) |
1010
**smsBlacklisted** | **Boolean** | Blacklist status for SMS campaigns (true&#x3D;blacklisted, false&#x3D;not blacklisted) |
11-
**modifiedAt** | [**OffsetDateTime**](OffsetDateTime.md) | Last modification UTC date-time of the contact (YYYY-MM-DDTHH:mm:ss.SSSZ) |
11+
**modifiedAt** | [**OffsetDateTime**] | Last modification UTC date-time of the contact (YYYY-MM-DDTHH:mm:ss.SSSZ) |
1212
**listIds** | **List&lt;Long&gt;** | |
1313
**listUnsubscribed** | **List&lt;Long&gt;** | | [optional]
14-
**attributes** | **Map&lt;String, String&gt;** | |
14+
**attributes** | **Object** | Set of attributes of the contact |
1515

1616

1717

docs/GetEmailCampaign.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Name | Type | Description | Notes
99
**subject** | **String** | Subject of the campaign |
1010
**type** | [**TypeEnum**](#TypeEnum) | Type of campaign |
1111
**status** | [**StatusEnum**](#StatusEnum) | Status of the campaign |
12-
**scheduledAt** | [**OffsetDateTime**](OffsetDateTime.md) | UTC date-time on which campaign is scheduled (YYYY-MM-DDTHH:mm:ss.SSSZ) | [optional]
12+
**scheduledAt** | [**OffsetDateTime**] | UTC date-time on which campaign is scheduled (YYYY-MM-DDTHH:mm:ss.SSSZ) | [optional]
1313
**testSent** | **Boolean** | Retrieved the status of test email sending. (true&#x3D;Test email has been sent false&#x3D;Test email has not been sent) |
1414
**header** | **String** | Header of the campaign |
1515
**footer** | **String** | Footer of the campaign |
@@ -19,8 +19,8 @@ Name | Type | Description | Notes
1919
**htmlContent** | **String** | HTML content of the campaign |
2020
**shareLink** | **String** | Link to share the campaign on social medias | [optional]
2121
**tag** | **String** | Tag of the campaign |
22-
**createdAt** | [**OffsetDateTime**](OffsetDateTime.md) | Creation UTC date-time of the campaign (YYYY-MM-DDTHH:mm:ss.SSSZ) |
23-
**modifiedAt** | [**OffsetDateTime**](OffsetDateTime.md) | UTC date-time of last modification of the campaign (YYYY-MM-DDTHH:mm:ss.SSSZ) |
22+
**createdAt** | [**OffsetDateTime**] | Creation UTC date-time of the campaign (YYYY-MM-DDTHH:mm:ss.SSSZ) |
23+
**modifiedAt** | [**OffsetDateTime**] | UTC date-time of last modification of the campaign (YYYY-MM-DDTHH:mm:ss.SSSZ) |
2424
**inlineImageActivation** | **Boolean** | Status of inline image. inlineImageActivation &#x3D; false means image can’t be embedded, &amp; inlineImageActivation &#x3D; true means image can be embedded, in the email. | [optional]
2525
**mirrorActive** | **Boolean** | Status of mirror links in campaign. mirrorActive &#x3D; false means mirror links are deactivated, &amp; mirrorActive &#x3D; true means mirror links are activated, in the campaign | [optional]
2626
**recurring** | **Boolean** | FOR TRIGGER ONLY ! Type of trigger campaign.recurring &#x3D; false means contact can receive the same Trigger campaign only once, &amp; recurring &#x3D; true means contact can receive the same Trigger campaign several times | [optional]

docs/GetEmailEventReportEvents.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**email** | **String** | Email address which generates the event |
8-
**date** | [**OffsetDateTime**](OffsetDateTime.md) | UTC date-time on which the event has been generated |
8+
**date** | [**OffsetDateTime**] | UTC date-time on which the event has been generated |
99
**subject** | **String** | Subject of the event | [optional]
1010
**messageId** | **String** | Message ID which generated the event |
1111
**event** | [**EventEnum**](#EventEnum) | Event which occurred |

docs/GetExtendedCampaignOverview.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Name | Type | Description | Notes
99
**subject** | **String** | Subject of the campaign |
1010
**type** | [**TypeEnum**](#TypeEnum) | Type of campaign |
1111
**status** | [**StatusEnum**](#StatusEnum) | Status of the campaign |
12-
**scheduledAt** | [**OffsetDateTime**](OffsetDateTime.md) | UTC date-time on which campaign is scheduled (YYYY-MM-DDTHH:mm:ss.SSSZ) | [optional]
12+
**scheduledAt** | [**OffsetDateTime**] | UTC date-time on which campaign is scheduled (YYYY-MM-DDTHH:mm:ss.SSSZ) | [optional]
1313
**testSent** | **Boolean** | Retrieved the status of test email sending. (true&#x3D;Test email has been sent false&#x3D;Test email has not been sent) |
1414
**header** | **String** | Header of the campaign |
1515
**footer** | **String** | Footer of the campaign |
@@ -19,8 +19,8 @@ Name | Type | Description | Notes
1919
**htmlContent** | **String** | HTML content of the campaign |
2020
**shareLink** | **String** | Link to share the campaign on social medias | [optional]
2121
**tag** | **String** | Tag of the campaign |
22-
**createdAt** | [**OffsetDateTime**](OffsetDateTime.md) | Creation UTC date-time of the campaign (YYYY-MM-DDTHH:mm:ss.SSSZ) |
23-
**modifiedAt** | [**OffsetDateTime**](OffsetDateTime.md) | UTC date-time of last modification of the campaign (YYYY-MM-DDTHH:mm:ss.SSSZ) |
22+
**createdAt** | [**OffsetDateTime**] | Creation UTC date-time of the campaign (YYYY-MM-DDTHH:mm:ss.SSSZ) |
23+
**modifiedAt** | [**OffsetDateTime**] | UTC date-time of last modification of the campaign (YYYY-MM-DDTHH:mm:ss.SSSZ) |
2424
**inlineImageActivation** | **Boolean** | Status of inline image. inlineImageActivation &#x3D; false means image can’t be embedded, &amp; inlineImageActivation &#x3D; true means image can be embedded, in the email. | [optional]
2525
**mirrorActive** | **Boolean** | Status of mirror links in campaign. mirrorActive &#x3D; false means mirror links are deactivated, &amp; mirrorActive &#x3D; true means mirror links are activated, in the campaign | [optional]
2626
**recurring** | **Boolean** | FOR TRIGGER ONLY ! Type of trigger campaign.recurring &#x3D; false means contact can receive the same Trigger campaign only once, &amp; recurring &#x3D; true means contact can receive the same Trigger campaign several times | [optional]

docs/GetExtendedCampaignStats.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,11 @@
44
## Properties
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7-
**campaignStats** | **List&lt;Object&gt;** | |
7+
**globalStats** | **Object** | Overall statistics of the campaign |
8+
**campaignStats** | **List&lt;Object&gt;** | List-wise statistics of the campaign. |
89
**mirrorClick** | **Long** | Number of clicks on mirror link |
910
**remaining** | **Long** | Number of remaning emails to send |
10-
**linksStats** | [**Map&lt;String, GetExtendedCampaignStatsLinksStats&gt;**](GetExtendedCampaignStatsLinksStats.md) | |
11+
**linksStats** | **Object** | Statistics about the number of clicks for the links |
1112
**statsByDomain** | [**GetStatsByDomain**](GetStatsByDomain.md) | |
1213

1314

0 commit comments

Comments
 (0)