Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 972 Bytes

StatusListStatus.md

File metadata and controls

30 lines (21 loc) · 972 Bytes

StatusListStatus

Properties

Name Type Description Notes
capacity str [optional]
values List[str] [optional]

Example

from agones_python_sdk.models.status_list_status import StatusListStatus

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

# convert the object into a dict
status_list_status_dict = status_list_status_instance.to_dict()
# create an instance of StatusListStatus from a dict
status_list_status_from_dict = StatusListStatus.from_dict(status_list_status_dict)

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