Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 727 Bytes

File metadata and controls

28 lines (19 loc) · 727 Bytes

Limit

Properties

Name Type Description Notes

Example

from igvf_client.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_from_dict = Limit.from_dict(limit_dict)

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