You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
*SibApiV3Sdk::ContactsApi* | [**create_folder**](docs/ContactsApi.md#create_folder) | **POST** /contacts/folders | Create a folder
91
91
*SibApiV3Sdk::ContactsApi* | [**create_list**](docs/ContactsApi.md#create_list) | **POST** /contacts/lists | Create a list
92
92
*SibApiV3Sdk::ContactsApi* | [**delete_attribute**](docs/ContactsApi.md#delete_attribute) | **DELETE** /contacts/attributes/{attributeCategory}/{attributeName} | Deletes an attribute
93
+
*SibApiV3Sdk::ContactsApi* | [**delete_contact**](docs/ContactsApi.md#delete_contact) | **DELETE** /contacts/{email} | Deletes a contact
93
94
*SibApiV3Sdk::ContactsApi* | [**delete_folder**](docs/ContactsApi.md#delete_folder) | **DELETE** /contacts/folders/{folderId} | Delete a folder (and all its lists)
94
95
*SibApiV3Sdk::ContactsApi* | [**delete_list**](docs/ContactsApi.md#delete_list) | **DELETE** /contacts/lists/{listId} | Delete a list
95
96
*SibApiV3Sdk::ContactsApi* | [**get_attributes**](docs/ContactsApi.md#get_attributes) | **GET** /contacts/attributes | Lists all attributes
@@ -355,3 +356,7 @@ If you find a bug, please post the issue on [Github](https://github.com/sendinbl
355
356
356
357
As always, if you need additional assistance, drop us a note [here](https://account.sendinblue.com/support).
357
358
359
+
## Recommendation
360
+
361
+
Please follow camelCase convention for variables in the API's. For example, use customVariable instead of custom_variable.
**type** | **String** | Displays the plan type of the user |
7
-
**credits_type** | **String** | This is the type of the credit, \"User Limit\" or \"Send Limit\" are two possible types of credit of a user. \"User Limit\" implies the total number of subscribers you can add to your account, and \"Send Limit\" implies the total number of emails you can send to the subscribers in your account. |
8
-
**credits** | **Float** | Remaining credits of the user. This can either be \"User Limit\" or \"Send Limit\" depending on the plan. |
9
-
**start_date** | **Date** | Date of the period from which the plan will start (only available for \"subscription\", \"unlimited\" and \"reseller\" plan type) | [optional]
10
-
**end_date** | **Date** | Date of the period from which the plan will end (only available for \"subscription\", \"unlimited\" and \"reseller\" plan type) | [optional]
7
+
**credits_type** | **String** | This is the type of the credit, \"Send Limit\" is one of the possible types of credit of a user. \"Send Limit\" implies the total number of emails you can send to the subscribers in your account. |
8
+
**credits** | **Float** | Remaining credits of the user |
9
+
**start_date** | **Date** | Date of the period from which the plan will start (only available for \"subscription\" and \"reseller\" plan type) | [optional]
10
+
**end_date** | **Date** | Date of the period from which the plan will end (only available for \"subscription\" and \"reseller\" plan type) | [optional]
11
+
**user_limit** | **Integer** | Only in case of reseller account. It implies the total number of child accounts you can add to your account. | [optional]
Copy file name to clipboardExpand all lines: lib/sib-api-v3-sdk/models/get_account_plan.rb
+22-12
Original file line number
Diff line number
Diff line change
@@ -18,18 +18,21 @@ class GetAccountPlan
18
18
# Displays the plan type of the user
19
19
attr_accessor:type
20
20
21
-
# This is the type of the credit, \"User Limit\" or \"Send Limit\" are two possible types of credit of a user. \"User Limit\" implies the total number of subscribers you can add to your account, and \"Send Limit\" implies the total number of emails you can send to the subscribers in your account.
21
+
# This is the type of the credit, \"Send Limit\" is one of the possible types of credit of a user. \"Send Limit\" implies the total number of emails you can send to the subscribers in your account.
22
22
attr_accessor:credits_type
23
23
24
-
# Remaining credits of the user. This can either be \"User Limit\" or \"Send Limit\" depending on the plan.
24
+
# Remaining credits of the user
25
25
attr_accessor:credits
26
26
27
-
# Date of the period from which the plan will start (only available for \"subscription\", \"unlimited\" and \"reseller\" plan type)
27
+
# Date of the period from which the plan will start (only available for \"subscription\" and \"reseller\" plan type)
28
28
attr_accessor:start_date
29
29
30
-
# Date of the period from which the plan will end (only available for \"subscription\", \"unlimited\" and \"reseller\" plan type)
30
+
# Date of the period from which the plan will end (only available for \"subscription\" and \"reseller\" plan type)
31
31
attr_accessor:end_date
32
32
33
+
# Only in case of reseller account. It implies the total number of child accounts you can add to your account.
0 commit comments