Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 796 Bytes

BatchLimit.md

File metadata and controls

28 lines (19 loc) · 796 Bytes

BatchLimit

Properties

Name Type Description Notes

Example

from flightctl.models.batch_limit import BatchLimit

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

# convert the object into a dict
batch_limit_dict = batch_limit_instance.to_dict()
# create an instance of BatchLimit from a dict
batch_limit_from_dict = BatchLimit.from_dict(batch_limit_dict)

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