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] |
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)