Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.01 KB

StatusPlayerStatus.md

File metadata and controls

31 lines (22 loc) · 1.01 KB

StatusPlayerStatus

Properties

Name Type Description Notes
count str [optional]
capacity str [optional]
ids List[str] [optional]

Example

from agones_python_sdk.models.status_player_status import StatusPlayerStatus

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

# convert the object into a dict
status_player_status_dict = status_player_status_instance.to_dict()
# create an instance of StatusPlayerStatus from a dict
status_player_status_from_dict = StatusPlayerStatus.from_dict(status_player_status_dict)

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