| Name |
Type |
Description |
Notes |
| live_applications |
int |
Total number of allowed live applications in the account. |
|
| sandbox_applications |
int |
Total number of allowed sandbox applications in the account. |
|
| active_campaigns |
int |
Total number of allowed active campaigns in live applications in the account. |
|
| coupons |
int |
Total number of allowed coupons in the account. |
|
| referral_codes |
int |
Total number of allowed referral codes in the account. |
|
| active_rules |
int |
Total number of allowed active rulesets in the account. |
|
| live_loyalty_programs |
int |
Total number of allowed live loyalty programs in the account. |
|
| sandbox_loyalty_programs |
int |
Total number of allowed sandbox loyalty programs in the account. |
|
| webhooks |
int |
Total number of allowed webhooks in the account. |
|
| users |
int |
Total number of allowed users in the account. |
|
| api_volume |
int |
Allowed volume of API requests to the account. |
|
| promotion_types |
List[str] |
Array of promotion types that are employed in the account. |
|
| secondary_deployment_price |
int |
The price for a secondary deployment according to contractual agreements. |
|
| currency_code |
str |
The currency of the contract. |
|
from talon_one.models.account_limits import AccountLimits
# TODO update the JSON string below
json = "{}"
# create an instance of AccountLimits from a JSON string
account_limits_instance = AccountLimits.from_json(json)
# print the JSON string representation of the object
print(AccountLimits.to_json())
# convert the object into a dict
account_limits_dict = account_limits_instance.to_dict()
# create an instance of AccountLimits from a dict
account_limits_from_dict = AccountLimits.from_dict(account_limits_dict)
[Back to Model list] [Back to API list] [Back to README]