Skip to content

Commit b53ed0a

Browse files
committed
Type object fix in GET call
1 parent d50ae57 commit b53ed0a

File tree

192 files changed

+904
-495
lines changed

Some content is hidden

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

192 files changed

+904
-495
lines changed

README.md

+10-8
Original file line numberDiff line numberDiff line change
@@ -166,15 +166,15 @@ Class | Method | HTTP request | Description
166166
*SibApiV3Sdk.ListsApi* | [**updateList**](docs/ListsApi.md#updateList) | **PUT** /contacts/lists/{listId} | Update a list
167167
*SibApiV3Sdk.ProcessApi* | [**getProcess**](docs/ProcessApi.md#getProcess) | **GET** /processes/{processId} | Return the informations for a process
168168
*SibApiV3Sdk.ProcessApi* | [**getProcesses**](docs/ProcessApi.md#getProcesses) | **GET** /processes | Return all the processes for your account
169-
*SibApiV3Sdk.ResellerApi* | [**addCredits**](docs/ResellerApi.md#addCredits) | **POST** /reseller/children/{childId}/credits/add | Add Email and/or SMS credits to a specific child account
170-
*SibApiV3Sdk.ResellerApi* | [**associateIpToChild**](docs/ResellerApi.md#associateIpToChild) | **POST** /reseller/children/{childId}/ips/associate | Associate a dedicated IP to the child
169+
*SibApiV3Sdk.ResellerApi* | [**addCredits**](docs/ResellerApi.md#addCredits) | **POST** /reseller/children/{childAuthKey}/credits/add | Add Email and/or SMS credits to a specific child account
170+
*SibApiV3Sdk.ResellerApi* | [**associateIpToChild**](docs/ResellerApi.md#associateIpToChild) | **POST** /reseller/children/{childAuthKey}/ips/associate | Associate a dedicated IP to the child
171171
*SibApiV3Sdk.ResellerApi* | [**createResellerChild**](docs/ResellerApi.md#createResellerChild) | **POST** /reseller/children | Creates a reseller child
172-
*SibApiV3Sdk.ResellerApi* | [**deleteResellerChild**](docs/ResellerApi.md#deleteResellerChild) | **DELETE** /reseller/children/{childId} | Deletes a single reseller child based on the childId supplied
173-
*SibApiV3Sdk.ResellerApi* | [**dissociateIpFromChild**](docs/ResellerApi.md#dissociateIpFromChild) | **POST** /reseller/children/{childId}/ips/dissociate | Dissociate a dedicated IP to the child
174-
*SibApiV3Sdk.ResellerApi* | [**getChildInfo**](docs/ResellerApi.md#getChildInfo) | **GET** /reseller/children/{childId} | Gets the info about a specific child account
172+
*SibApiV3Sdk.ResellerApi* | [**deleteResellerChild**](docs/ResellerApi.md#deleteResellerChild) | **DELETE** /reseller/children/{childAuthKey} | Deletes a single reseller child based on the childAuthKey supplied
173+
*SibApiV3Sdk.ResellerApi* | [**dissociateIpFromChild**](docs/ResellerApi.md#dissociateIpFromChild) | **POST** /reseller/children/{childAuthKey}/ips/dissociate | Dissociate a dedicated IP to the child
174+
*SibApiV3Sdk.ResellerApi* | [**getChildInfo**](docs/ResellerApi.md#getChildInfo) | **GET** /reseller/children/{childAuthKey} | Gets the info about a specific child account
175175
*SibApiV3Sdk.ResellerApi* | [**getResellerChilds**](docs/ResellerApi.md#getResellerChilds) | **GET** /reseller/children | Gets the list of all reseller's children accounts
176-
*SibApiV3Sdk.ResellerApi* | [**removeCredits**](docs/ResellerApi.md#removeCredits) | **POST** /reseller/children/{childId}/credits/remove | Remove Email and/or SMS credits from a specific child account
177-
*SibApiV3Sdk.ResellerApi* | [**updateResellerChild**](docs/ResellerApi.md#updateResellerChild) | **PUT** /reseller/children/{childId} | Updates infos of reseller's child based on the childId supplied
176+
*SibApiV3Sdk.ResellerApi* | [**removeCredits**](docs/ResellerApi.md#removeCredits) | **POST** /reseller/children/{childAuthKey}/credits/remove | Remove Email and/or SMS credits from a specific child account
177+
*SibApiV3Sdk.ResellerApi* | [**updateResellerChild**](docs/ResellerApi.md#updateResellerChild) | **PUT** /reseller/children/{childAuthKey} | Updates infos of reseller's child based on the childAuthKey supplied
178178
*SibApiV3Sdk.SMSCampaignsApi* | [**createSmsCampaign**](docs/SMSCampaignsApi.md#createSmsCampaign) | **POST** /smsCampaigns | Creates an SMS campaign
179179
*SibApiV3Sdk.SMSCampaignsApi* | [**deleteSmsCampaign**](docs/SMSCampaignsApi.md#deleteSmsCampaign) | **DELETE** /smsCampaigns/{campaignId} | Delete the SMS campaign
180180
*SibApiV3Sdk.SMSCampaignsApi* | [**getSmsCampaign**](docs/SMSCampaignsApi.md#getSmsCampaign) | **GET** /smsCampaigns/{campaignId} | Get an SMS campaign
@@ -227,6 +227,7 @@ Class | Method | HTTP request | Description
227227
- [SibApiV3Sdk.CreateEmailCampaignSender](docs/CreateEmailCampaignSender.md)
228228
- [SibApiV3Sdk.CreateList](docs/CreateList.md)
229229
- [SibApiV3Sdk.CreateModel](docs/CreateModel.md)
230+
- [SibApiV3Sdk.CreateReseller](docs/CreateReseller.md)
230231
- [SibApiV3Sdk.CreateSender](docs/CreateSender.md)
231232
- [SibApiV3Sdk.CreateSenderIps](docs/CreateSenderIps.md)
232233
- [SibApiV3Sdk.CreateSenderModel](docs/CreateSenderModel.md)
@@ -253,8 +254,9 @@ Class | Method | HTTP request | Description
253254
- [SibApiV3Sdk.GetCampaignRecipients](docs/GetCampaignRecipients.md)
254255
- [SibApiV3Sdk.GetCampaignStats](docs/GetCampaignStats.md)
255256
- [SibApiV3Sdk.GetChildInfoApiKeys](docs/GetChildInfoApiKeys.md)
257+
- [SibApiV3Sdk.GetChildInfoApiKeysV2](docs/GetChildInfoApiKeysV2.md)
258+
- [SibApiV3Sdk.GetChildInfoApiKeysV3](docs/GetChildInfoApiKeysV3.md)
256259
- [SibApiV3Sdk.GetChildInfoCredits](docs/GetChildInfoCredits.md)
257-
- [SibApiV3Sdk.GetChildInfoIps](docs/GetChildInfoIps.md)
258260
- [SibApiV3Sdk.GetChildInfoStatistics](docs/GetChildInfoStatistics.md)
259261
- [SibApiV3Sdk.GetChildrenList](docs/GetChildrenList.md)
260262
- [SibApiV3Sdk.GetClient](docs/GetClient.md)

docs/AddCredits.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Properties
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
6-
**sms** | **Number** | SMS credits to be added to the child account | [optional]
7-
**email** | **Number** | Email credits to be added to the child account | [optional]
6+
**sms** | **Number** | Required if email credits are empty. SMS credits to be added to the child account | [optional]
7+
**email** | **Number** | Required if sms credits are empty. Email credits to be added to the child account | [optional]
88

99

docs/CreateReseller.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# SibApiV3Sdk.CreateReseller
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**authKey** | **String** | AuthKey of Reseller child created |
7+
8+

docs/CreateSmtpTemplate.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Name | Type | Description | Notes
1010
**htmlUrl** | **String** | Url which contents the body of the email message. REQUIRED if htmlContent is empty | [optional]
1111
**subject** | **String** | Subject of the template |
1212
**replyTo** | **String** | Email on which campaign recipients will be able to reply to | [optional]
13-
**toField** | **String** | This is to personalize the «To» Field. If you want to include the first name and last name of your recipient, add [FNAME] [LNAME]. To use the contact attributes here, these must already exist in SendinBlue account | [optional]
13+
**toField** | **String** | This is to personalize the «To» Field. If you want to include the first name and last name of your recipient, add {FNAME} {LNAME}. To use the contact attributes here, these must already exist in SendinBlue account | [optional]
1414
**attachmentUrl** | **String** | Absolute url of the attachment (no local file). 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]
1515
**isActive** | **Boolean** | Status of template. isActive = true means template is active and isActive = false means template is inactive | [optional]
1616

docs/ErrorModel.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Name | Type | Description | Notes
2323

2424
* `document_not_found` (value: `"document_not_found"`)
2525

26-
* `reseller_permission` (value: `"reseller_permission"`)
26+
* `reseller_permission_denied` (value: `"reseller_permission_denied"`)
2727

2828
* `not_enough_credits` (value: `"not_enough_credits"`)
2929

docs/GetChildInfo.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Name | Type | Description | Notes
66
**credits** | [**GetChildInfoCredits**](GetChildInfoCredits.md) | | [optional]
77
**statistics** | [**GetChildInfoStatistics**](GetChildInfoStatistics.md) | | [optional]
88
**password** | **String** | The encrypted password of child account |
9-
**ips** | [**[GetChildInfoIps]**](GetChildInfoIps.md) | IP(s) associated to a child account user | [optional]
10-
**apiKeys** | [**[GetChildInfoApiKeys]**](GetChildInfoApiKeys.md) | API Keys associated to child account | [optional]
9+
**ips** | **[String]** | IP(s) associated to a child account user | [optional]
10+
**apiKeys** | [**GetChildInfoApiKeys**](GetChildInfoApiKeys.md) | | [optional]
1111

1212

docs/GetChildInfoApiKeys.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
## Properties
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
6-
**name** | **String** | Name of the key |
7-
**key** | **String** | API Key |
8-
**secret** | **String** | Secret Key associated to the API Key (in case v1 Key is used only) | [optional]
6+
**v2** | [**[GetChildInfoApiKeysV2]**](GetChildInfoApiKeysV2.md) | |
7+
**v3** | [**[GetChildInfoApiKeysV3]**](GetChildInfoApiKeysV3.md) | | [optional]
98

109

docs/GetChildInfoApiKeysV2.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# SibApiV3Sdk.GetChildInfoApiKeysV2
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**name** | **String** | Name of the key for version 2 |
7+
**key** | **String** | API Key for version 2 |
8+
9+

docs/GetChildInfoApiKeysV3.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# SibApiV3Sdk.GetChildInfoApiKeysV3
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**name** | **String** | Name of the key for version 3 |
7+
**key** | **String** | API Key for version 3 |
8+
9+

docs/GetChildInfoIps.md

-9
This file was deleted.

docs/GetEmailCampaign.md

+2
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,7 @@
33
## Properties
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
6+
**recipients** | **Object** | |
7+
**statistics** | **Object** | |
68

79

docs/GetSmsCampaign.md

+2
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,7 @@
33
## Properties
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
6+
**recipients** | **Object** | |
7+
**statistics** | **Object** | |
68

79

docs/ManageIp.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
## Properties
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
6-
**ipId** | **Number** | ID of the IP | [optional]
6+
**ip** | **String** | Dedicated ID | [optional]
77

88

docs/RemoveCredits.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Properties
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
6-
**sms** | **Number** | SMS credits to be removed from the child account | [optional]
7-
**email** | **Number** | Email credits to be removed from the child account | [optional]
6+
**sms** | **Number** | Required if email credits are empty. SMS credits to be removed from the child account | [optional]
7+
**email** | **Number** | Required if sms credits are empty. Email credits to be removed from the child account | [optional]
88

99

0 commit comments

Comments
 (0)