| Name | Type | Description | Notes |
|---|
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)