Skip to content

Latest commit

 

History

History
executable file
·
33 lines (24 loc) · 1.21 KB

Limits.md

File metadata and controls

executable file
·
33 lines (24 loc) · 1.21 KB

Limits

Properties

Name Type Description Notes
limits List[Limit] List of limits for all teams linked to the current user's billing profile
max_limit MaxLimit [optional]
max_limit_str str Maximum monthly spend limit for the current user's billing profile as a string in user's display currency [optional] [readonly]
total Total [optional]
total_str str Current total monthly spend limit as a string [optional] [readonly]

Example

from epiccore.models.limits import Limits

# TODO update the JSON string below
json = "{}"
# create an instance of Limits from a JSON string
limits_instance = Limits.from_json(json)
# print the JSON string representation of the object
print Limits.to_json()

# convert the object into a dict
limits_dict = limits_instance.to_dict()
# create an instance of Limits from a dict
limits_form_dict = limits.from_dict(limits_dict)

[Back to Model list] [Back to API list] [Back to README]