Skip to content

Commit b459c5d

Browse files
Merge pull request #35 from sendinblue/feature_updated_swagger_sync
Wrapper moved to swagger-codegen last stable version 2.3.0
2 parents 132cf4b + 6e4489a commit b459c5d

File tree

509 files changed

+20198
-2689
lines changed

Some content is hidden

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

509 files changed

+20198
-2689
lines changed

.swagger-codegen/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.0.5
1+
2.3.0

README.md

Lines changed: 77 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -146,13 +146,18 @@ Class | Method | HTTP request | Description
146146
*ProcessApi* | [**get_processes**](docs/ProcessApi.md#get_processes) | **GET** /processes | Return all the processes for your account
147147
*ResellerApi* | [**add_credits**](docs/ResellerApi.md#add_credits) | **POST** /reseller/children/{childAuthKey}/credits/add | Add Email and/or SMS credits to a specific child account
148148
*ResellerApi* | [**associate_ip_to_child**](docs/ResellerApi.md#associate_ip_to_child) | **POST** /reseller/children/{childAuthKey}/ips/associate | Associate a dedicated IP to the child
149+
*ResellerApi* | [**create_child_domain**](docs/ResellerApi.md#create_child_domain) | **POST** /reseller/children/{childAuthKey}/domains | Creates a domain for a child account
149150
*ResellerApi* | [**create_reseller_child**](docs/ResellerApi.md#create_reseller_child) | **POST** /reseller/children | Creates a reseller child
151+
*ResellerApi* | [**delete_child_domain**](docs/ResellerApi.md#delete_child_domain) | **DELETE** /reseller/children/{childAuthKey}/domains/{domainName} | Deletes the sender domain of the reseller child based on the childAuthKey and domainName passed
150152
*ResellerApi* | [**delete_reseller_child**](docs/ResellerApi.md#delete_reseller_child) | **DELETE** /reseller/children/{childAuthKey} | Deletes a single reseller child based on the childAuthKey supplied
151153
*ResellerApi* | [**dissociate_ip_from_child**](docs/ResellerApi.md#dissociate_ip_from_child) | **POST** /reseller/children/{childAuthKey}/ips/dissociate | Dissociate a dedicated IP to the child
154+
*ResellerApi* | [**get_child_domains**](docs/ResellerApi.md#get_child_domains) | **GET** /reseller/children/{childAuthKey}/domains | Gets all the sender domains of a specific child account
152155
*ResellerApi* | [**get_child_info**](docs/ResellerApi.md#get_child_info) | **GET** /reseller/children/{childAuthKey} | Gets the info about a specific child account
153-
*ResellerApi* | [**get_reseller_childs**](docs/ResellerApi.md#get_reseller_childs) | **GET** /reseller/children | Gets the list of all reseller's children accounts
156+
*ResellerApi* | [**get_reseller_childs**](docs/ResellerApi.md#get_reseller_childs) | **GET** /reseller/children | Gets the list of all reseller's children accounts
157+
*ResellerApi* | [**get_sso_token**](docs/ResellerApi.md#get_sso_token) | **GET** /reseller/children/{childAuthKey}/auth | Generates a session token which will remain valid for a short period of time only.
154158
*ResellerApi* | [**remove_credits**](docs/ResellerApi.md#remove_credits) | **POST** /reseller/children/{childAuthKey}/credits/remove | Remove Email and/or SMS credits from a specific child account
155-
*ResellerApi* | [**update_reseller_child**](docs/ResellerApi.md#update_reseller_child) | **PUT** /reseller/children/{childAuthKey} | Updates infos of reseller's child based on the childAuthKey supplied
159+
*ResellerApi* | [**update_child_domain**](docs/ResellerApi.md#update_child_domain) | **PUT** /reseller/children/{childAuthKey}/domains/{domainName} | Updates the sender domain of reseller's child based on the childAuthKey and domainName passed
160+
*ResellerApi* | [**update_reseller_child**](docs/ResellerApi.md#update_reseller_child) | **PUT** /reseller/children/{childAuthKey} | Updates infos of reseller's child based on the childAuthKey supplied
156161
*SMSCampaignsApi* | [**create_sms_campaign**](docs/SMSCampaignsApi.md#create_sms_campaign) | **POST** /smsCampaigns | Creates an SMS campaign
157162
*SMSCampaignsApi* | [**delete_sms_campaign**](docs/SMSCampaignsApi.md#delete_sms_campaign) | **DELETE** /smsCampaigns/{campaignId} | Delete the SMS campaign
158163
*SMSCampaignsApi* | [**get_sms_campaign**](docs/SMSCampaignsApi.md#get_sms_campaign) | **GET** /smsCampaigns/{campaignId} | Get an SMS campaign
@@ -191,49 +196,79 @@ Class | Method | HTTP request | Description
191196
*WebhooksApi* | [**get_webhooks**](docs/WebhooksApi.md#get_webhooks) | **GET** /webhooks | Get all webhooks
192197
*WebhooksApi* | [**update_webhook**](docs/WebhooksApi.md#update_webhook) | **PUT** /webhooks/{webhookId} | Update a webhook
193198

199+
194200
## Documentation For Models
195201

202+
- [AddChildDomain](docs/AddChildDomain.md)
196203
- [AddContactToList](docs/AddContactToList.md)
197204
- [AddCredits](docs/AddCredits.md)
198205
- [CreateAttribute](docs/CreateAttribute.md)
206+
- [CreateAttributeEnumeration](docs/CreateAttributeEnumeration.md)
199207
- [CreateChild](docs/CreateChild.md)
200208
- [CreateContact](docs/CreateContact.md)
201209
- [CreateEmailCampaign](docs/CreateEmailCampaign.md)
210+
- [CreateEmailCampaignRecipients](docs/CreateEmailCampaignRecipients.md)
211+
- [CreateEmailCampaignSender](docs/CreateEmailCampaignSender.md)
202212
- [CreateList](docs/CreateList.md)
203213
- [CreateModel](docs/CreateModel.md)
204214
- [CreateReseller](docs/CreateReseller.md)
205215
- [CreateSender](docs/CreateSender.md)
216+
- [CreateSenderIps](docs/CreateSenderIps.md)
206217
- [CreateSenderModel](docs/CreateSenderModel.md)
207218
- [CreateSmsCampaign](docs/CreateSmsCampaign.md)
219+
- [CreateSmsCampaignRecipients](docs/CreateSmsCampaignRecipients.md)
208220
- [CreateSmtpEmail](docs/CreateSmtpEmail.md)
209221
- [CreateSmtpTemplate](docs/CreateSmtpTemplate.md)
222+
- [CreateSmtpTemplateSender](docs/CreateSmtpTemplateSender.md)
210223
- [CreateUpdateContactModel](docs/CreateUpdateContactModel.md)
211224
- [CreateUpdateFolder](docs/CreateUpdateFolder.md)
212225
- [CreateWebhook](docs/CreateWebhook.md)
213226
- [CreatedProcessId](docs/CreatedProcessId.md)
214227
- [DeleteHardbounces](docs/DeleteHardbounces.md)
215228
- [EmailExportRecipients](docs/EmailExportRecipients.md)
216229
- [ErrorModel](docs/ErrorModel.md)
217-
- [GetAccount](docs/GetAccount.md)
230+
- [GetAccountMarketingAutomation](docs/GetAccountMarketingAutomation.md)
231+
- [GetAccountPlan](docs/GetAccountPlan.md)
232+
- [GetAccountRelay](docs/GetAccountRelay.md)
233+
- [GetAccountRelayData](docs/GetAccountRelayData.md)
218234
- [GetAggregatedReport](docs/GetAggregatedReport.md)
219235
- [GetAttributes](docs/GetAttributes.md)
236+
- [GetAttributesAttributes](docs/GetAttributesAttributes.md)
237+
- [GetAttributesEnumeration](docs/GetAttributesEnumeration.md)
220238
- [GetCampaignOverview](docs/GetCampaignOverview.md)
221239
- [GetCampaignRecipients](docs/GetCampaignRecipients.md)
222240
- [GetCampaignStats](docs/GetCampaignStats.md)
223-
- [GetChildInfo](docs/GetChildInfo.md)
241+
- [GetChildDomain](docs/GetChildDomain.md)
242+
- [GetChildDomains](docs/GetChildDomains.md)
243+
- [GetChildInfoApiKeys](docs/GetChildInfoApiKeys.md)
244+
- [GetChildInfoApiKeysV2](docs/GetChildInfoApiKeysV2.md)
245+
- [GetChildInfoApiKeysV3](docs/GetChildInfoApiKeysV3.md)
246+
- [GetChildInfoCredits](docs/GetChildInfoCredits.md)
247+
- [GetChildInfoStatistics](docs/GetChildInfoStatistics.md)
224248
- [GetChildrenList](docs/GetChildrenList.md)
225249
- [GetClient](docs/GetClient.md)
226250
- [GetContactCampaignStats](docs/GetContactCampaignStats.md)
251+
- [GetContactCampaignStatsClicked](docs/GetContactCampaignStatsClicked.md)
252+
- [GetContactCampaignStatsOpened](docs/GetContactCampaignStatsOpened.md)
253+
- [GetContactCampaignStatsTransacAttributes](docs/GetContactCampaignStatsTransacAttributes.md)
254+
- [GetContactCampaignStatsUnsubscriptions](docs/GetContactCampaignStatsUnsubscriptions.md)
227255
- [GetContactDetails](docs/GetContactDetails.md)
228256
- [GetContacts](docs/GetContacts.md)
229-
- [GetEmailCampaign](docs/GetEmailCampaign.md)
230257
- [GetEmailCampaigns](docs/GetEmailCampaigns.md)
231258
- [GetEmailEventReport](docs/GetEmailEventReport.md)
232-
- [GetExtendedCampaignOverview](docs/GetExtendedCampaignOverview.md)
259+
- [GetEmailEventReportEvents](docs/GetEmailEventReportEvents.md)
260+
- [GetExtendedCampaignOverviewSender](docs/GetExtendedCampaignOverviewSender.md)
233261
- [GetExtendedCampaignStats](docs/GetExtendedCampaignStats.md)
234-
- [GetExtendedClient](docs/GetExtendedClient.md)
235-
- [GetExtendedContactDetails](docs/GetExtendedContactDetails.md)
236-
- [GetExtendedList](docs/GetExtendedList.md)
262+
- [GetExtendedClientAddress](docs/GetExtendedClientAddress.md)
263+
- [GetExtendedContactDetailsStatistics](docs/GetExtendedContactDetailsStatistics.md)
264+
- [GetExtendedContactDetailsStatisticsClicked](docs/GetExtendedContactDetailsStatisticsClicked.md)
265+
- [GetExtendedContactDetailsStatisticsLinks](docs/GetExtendedContactDetailsStatisticsLinks.md)
266+
- [GetExtendedContactDetailsStatisticsMessagesSent](docs/GetExtendedContactDetailsStatisticsMessagesSent.md)
267+
- [GetExtendedContactDetailsStatisticsOpened](docs/GetExtendedContactDetailsStatisticsOpened.md)
268+
- [GetExtendedContactDetailsStatisticsUnsubscriptions](docs/GetExtendedContactDetailsStatisticsUnsubscriptions.md)
269+
- [GetExtendedContactDetailsStatisticsUnsubscriptionsAdminUnsubscription](docs/GetExtendedContactDetailsStatisticsUnsubscriptionsAdminUnsubscription.md)
270+
- [GetExtendedContactDetailsStatisticsUnsubscriptionsUserUnsubscription](docs/GetExtendedContactDetailsStatisticsUnsubscriptionsUserUnsubscription.md)
271+
- [GetExtendedListCampaignStats](docs/GetExtendedListCampaignStats.md)
237272
- [GetFolder](docs/GetFolder.md)
238273
- [GetFolderLists](docs/GetFolderLists.md)
239274
- [GetFolders](docs/GetFolders.md)
@@ -246,47 +281,79 @@ Class | Method | HTTP request | Description
246281
- [GetProcess](docs/GetProcess.md)
247282
- [GetProcesses](docs/GetProcesses.md)
248283
- [GetReports](docs/GetReports.md)
284+
- [GetReportsReports](docs/GetReportsReports.md)
249285
- [GetSendersList](docs/GetSendersList.md)
250-
- [GetSmsCampaign](docs/GetSmsCampaign.md)
286+
- [GetSendersListIps](docs/GetSendersListIps.md)
287+
- [GetSendersListSenders](docs/GetSendersListSenders.md)
251288
- [GetSmsCampaignOverview](docs/GetSmsCampaignOverview.md)
252289
- [GetSmsCampaignStats](docs/GetSmsCampaignStats.md)
253290
- [GetSmsCampaigns](docs/GetSmsCampaigns.md)
254291
- [GetSmsEventReport](docs/GetSmsEventReport.md)
292+
- [GetSmsEventReportEvents](docs/GetSmsEventReportEvents.md)
255293
- [GetSmtpTemplateOverview](docs/GetSmtpTemplateOverview.md)
294+
- [GetSmtpTemplateOverviewSender](docs/GetSmtpTemplateOverviewSender.md)
256295
- [GetSmtpTemplates](docs/GetSmtpTemplates.md)
296+
- [GetSsoToken](docs/GetSsoToken.md)
257297
- [GetStatsByDomain](docs/GetStatsByDomain.md)
258298
- [GetTransacAggregatedSmsReport](docs/GetTransacAggregatedSmsReport.md)
259299
- [GetTransacSmsReport](docs/GetTransacSmsReport.md)
300+
- [GetTransacSmsReportReports](docs/GetTransacSmsReportReports.md)
260301
- [GetWebhook](docs/GetWebhook.md)
261302
- [GetWebhooks](docs/GetWebhooks.md)
262303
- [ManageIp](docs/ManageIp.md)
263304
- [PostContactInfo](docs/PostContactInfo.md)
305+
- [PostContactInfoContacts](docs/PostContactInfoContacts.md)
264306
- [PostSendFailed](docs/PostSendFailed.md)
265307
- [PostSendSmsTestFailed](docs/PostSendSmsTestFailed.md)
266308
- [RemainingCreditModel](docs/RemainingCreditModel.md)
309+
- [RemainingCreditModelChild](docs/RemainingCreditModelChild.md)
310+
- [RemainingCreditModelReseller](docs/RemainingCreditModelReseller.md)
267311
- [RemoveContactFromList](docs/RemoveContactFromList.md)
268312
- [RemoveCredits](docs/RemoveCredits.md)
269313
- [RequestContactExport](docs/RequestContactExport.md)
270314
- [RequestContactImport](docs/RequestContactImport.md)
315+
- [RequestContactImportNewList](docs/RequestContactImportNewList.md)
271316
- [RequestSmsRecipientExport](docs/RequestSmsRecipientExport.md)
272317
- [SendEmail](docs/SendEmail.md)
318+
- [SendEmailAttachment](docs/SendEmailAttachment.md)
273319
- [SendReport](docs/SendReport.md)
320+
- [SendReportEmail](docs/SendReportEmail.md)
274321
- [SendSms](docs/SendSms.md)
275322
- [SendSmtpEmail](docs/SendSmtpEmail.md)
323+
- [SendSmtpEmailAttachment](docs/SendSmtpEmailAttachment.md)
324+
- [SendSmtpEmailBcc](docs/SendSmtpEmailBcc.md)
325+
- [SendSmtpEmailCc](docs/SendSmtpEmailCc.md)
326+
- [SendSmtpEmailReplyTo](docs/SendSmtpEmailReplyTo.md)
327+
- [SendSmtpEmailSender](docs/SendSmtpEmailSender.md)
328+
- [SendSmtpEmailTo](docs/SendSmtpEmailTo.md)
276329
- [SendTemplateEmail](docs/SendTemplateEmail.md)
277330
- [SendTestEmail](docs/SendTestEmail.md)
278331
- [SendTestSms](docs/SendTestSms.md)
279332
- [SendTransacSms](docs/SendTransacSms.md)
280333
- [UpdateAttribute](docs/UpdateAttribute.md)
334+
- [UpdateAttributeEnumeration](docs/UpdateAttributeEnumeration.md)
281335
- [UpdateCampaignStatus](docs/UpdateCampaignStatus.md)
282336
- [UpdateChild](docs/UpdateChild.md)
337+
- [UpdateChildDomain](docs/UpdateChildDomain.md)
283338
- [UpdateContact](docs/UpdateContact.md)
284339
- [UpdateEmailCampaign](docs/UpdateEmailCampaign.md)
340+
- [UpdateEmailCampaignRecipients](docs/UpdateEmailCampaignRecipients.md)
341+
- [UpdateEmailCampaignSender](docs/UpdateEmailCampaignSender.md)
285342
- [UpdateList](docs/UpdateList.md)
286343
- [UpdateSender](docs/UpdateSender.md)
287344
- [UpdateSmsCampaign](docs/UpdateSmsCampaign.md)
288345
- [UpdateSmtpTemplate](docs/UpdateSmtpTemplate.md)
346+
- [UpdateSmtpTemplateSender](docs/UpdateSmtpTemplateSender.md)
289347
- [UpdateWebhook](docs/UpdateWebhook.md)
348+
- [GetChildInfo](docs/GetChildInfo.md)
349+
- [GetExtendedCampaignOverview](docs/GetExtendedCampaignOverview.md)
350+
- [GetExtendedClient](docs/GetExtendedClient.md)
351+
- [GetExtendedContactDetails](docs/GetExtendedContactDetails.md)
352+
- [GetExtendedList](docs/GetExtendedList.md)
353+
- [GetSmsCampaign](docs/GetSmsCampaign.md)
354+
- [GetAccount](docs/GetAccount.md)
355+
- [GetEmailCampaign](docs/GetEmailCampaign.md)
356+
290357

291358
## Documentation For Authorization
292359

docs/AccountApi.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Method | HTTP request | Description
66
------------- | ------------- | -------------
77
[**get_account**](AccountApi.md#get_account) | **GET** /account | Get your account informations, plans and credits details
88

9+
910
# **get_account**
1011
> GetAccount get_account()
1112
@@ -54,7 +55,7 @@ This endpoint does not need any parameter.
5455

5556
### HTTP request headers
5657

57-
- **Content-Type**: Not defined
58+
- **Content-Type**: application/json
5859
- **Accept**: application/json
5960

6061
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)

docs/AddChildDomain.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# AddChildDomain
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**domain** | **str** | Sender domain to add for a specific child account | [optional]
7+
8+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
9+
10+

docs/AddContactToList.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@ Name | Type | Description | Notes
77

88
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
99

10+

docs/AddCredits.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@ Name | Type | Description | Notes
88

99
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
1010

11+

docs/AttributesApi.md

Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@ Method | HTTP request | Description
99
[**get_attributes**](AttributesApi.md#get_attributes) | **GET** /contacts/attributes | Lists all attributes
1010
[**update_attribute**](AttributesApi.md#update_attribute) | **PUT** /contacts/attributes/{attributeCategory}/{attributeName} | Updates contact attribute
1111

12+
1213
# **create_attribute**
13-
> create_attribute(body, attribute_category, attribute_name)
14+
> create_attribute(attribute_category, attribute_name, create_attribute)
1415
1516
Creates contact attribute
1617

@@ -35,13 +36,13 @@ configuration.api_key['partner-key'] = 'YOUR_API_KEY'
3536

3637
# create an instance of the API class
3738
api_instance = sib_api_v3_sdk.AttributesApi(sib_api_v3_sdk.ApiClient(configuration))
38-
body = sib_api_v3_sdk.CreateAttribute() # CreateAttribute | Values to create an attribute
3939
attribute_category = 'attribute_category_example' # str | Category of the attribute
4040
attribute_name = 'attribute_name_example' # str | Name of the attribute
41+
create_attribute = sib_api_v3_sdk.CreateAttribute() # CreateAttribute | Values to create an attribute
4142

4243
try:
4344
# Creates contact attribute
44-
api_instance.create_attribute(body, attribute_category, attribute_name)
45+
api_instance.create_attribute(attribute_category, attribute_name, create_attribute)
4546
except ApiException as e:
4647
print("Exception when calling AttributesApi->create_attribute: %s\n" % e)
4748
```
@@ -50,9 +51,9 @@ except ApiException as e:
5051

5152
Name | Type | Description | Notes
5253
------------- | ------------- | ------------- | -------------
53-
**body** | [**CreateAttribute**](CreateAttribute.md)| Values to create an attribute |
54-
**attribute_category** | [**str**](.md)| Category of the attribute |
55-
**attribute_name** | [**str**](.md)| Name of the attribute |
54+
**attribute_category** | **str**| Category of the attribute |
55+
**attribute_name** | **str**| Name of the attribute |
56+
**create_attribute** | [**CreateAttribute**](CreateAttribute.md)| Values to create an attribute |
5657

5758
### Return type
5859

@@ -109,8 +110,8 @@ except ApiException as e:
109110

110111
Name | Type | Description | Notes
111112
------------- | ------------- | ------------- | -------------
112-
**attribute_category** | [**str**](.md)| Category of the attribute |
113-
**attribute_name** | [**str**](.md)| Name of the existing attribute |
113+
**attribute_category** | **str**| Category of the attribute |
114+
**attribute_name** | **str**| Name of the existing attribute |
114115

115116
### Return type
116117

@@ -122,7 +123,7 @@ void (empty response body)
122123

123124
### HTTP request headers
124125

125-
- **Content-Type**: Not defined
126+
- **Content-Type**: application/json
126127
- **Accept**: application/json
127128

128129
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
@@ -175,13 +176,13 @@ This endpoint does not need any parameter.
175176

176177
### HTTP request headers
177178

178-
- **Content-Type**: Not defined
179+
- **Content-Type**: application/json
179180
- **Accept**: application/json
180181

181182
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
182183

183184
# **update_attribute**
184-
> update_attribute(body, attribute_category, attribute_name)
185+
> update_attribute(attribute_category, attribute_name, update_attribute)
185186
186187
Updates contact attribute
187188

@@ -206,13 +207,13 @@ configuration.api_key['partner-key'] = 'YOUR_API_KEY'
206207

207208
# create an instance of the API class
208209
api_instance = sib_api_v3_sdk.AttributesApi(sib_api_v3_sdk.ApiClient(configuration))
209-
body = sib_api_v3_sdk.UpdateAttribute() # UpdateAttribute | Values to update an attribute
210210
attribute_category = 'attribute_category_example' # str | Category of the attribute
211211
attribute_name = 'attribute_name_example' # str | Name of the existing attribute
212+
update_attribute = sib_api_v3_sdk.UpdateAttribute() # UpdateAttribute | Values to update an attribute
212213

213214
try:
214215
# Updates contact attribute
215-
api_instance.update_attribute(body, attribute_category, attribute_name)
216+
api_instance.update_attribute(attribute_category, attribute_name, update_attribute)
216217
except ApiException as e:
217218
print("Exception when calling AttributesApi->update_attribute: %s\n" % e)
218219
```
@@ -221,9 +222,9 @@ except ApiException as e:
221222

222223
Name | Type | Description | Notes
223224
------------- | ------------- | ------------- | -------------
224-
**body** | [**UpdateAttribute**](UpdateAttribute.md)| Values to update an attribute |
225-
**attribute_category** | [**str**](.md)| Category of the attribute |
226-
**attribute_name** | [**str**](.md)| Name of the existing attribute |
225+
**attribute_category** | **str**| Category of the attribute |
226+
**attribute_name** | **str**| Name of the existing attribute |
227+
**update_attribute** | [**UpdateAttribute**](UpdateAttribute.md)| Values to update an attribute |
227228

228229
### Return type
229230

0 commit comments

Comments
 (0)