Skip to content

Latest commit

 

History

History
executable file
·
34 lines (25 loc) · 1.07 KB

Limit.md

File metadata and controls

executable file
·
34 lines (25 loc) · 1.07 KB

Limit

List of limits for all teams linked to the current user's billing profile

Properties

Name Type Description Notes
team Team [optional]
budget Budget [optional]
project Project [optional]
jobauth JobAuth [optional]
id int Team id for this limit. -1 signifies the user's limits

Example

from epiccore.models.limit import Limit

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

# convert the object into a dict
limit_dict = limit_instance.to_dict()
# create an instance of Limit from a dict
limit_form_dict = limit.from_dict(limit_dict)

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