Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.38 KB

SdkGameServerStatus.md

File metadata and controls

35 lines (26 loc) · 1.38 KB

SdkGameServerStatus

Properties

Name Type Description Notes
state str [optional]
address str [optional]
addresses List[StatusAddress] [optional]
ports List[StatusPort] [optional]
players StatusPlayerStatus [optional]
counters Dict[str, StatusCounterStatus] [optional]
lists Dict[str, StatusListStatus] [optional]

Example

from agones_python_sdk.models.sdk_game_server_status import SdkGameServerStatus

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

# convert the object into a dict
sdk_game_server_status_dict = sdk_game_server_status_instance.to_dict()
# create an instance of SdkGameServerStatus from a dict
sdk_game_server_status_from_dict = SdkGameServerStatus.from_dict(sdk_game_server_status_dict)

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