Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 944 Bytes

GameServerSpec.md

File metadata and controls

29 lines (20 loc) · 944 Bytes

GameServerSpec

Properties

Name Type Description Notes
health GameServerSpecHealth [optional]

Example

from agones_python_sdk.models.game_server_spec import GameServerSpec

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

# convert the object into a dict
game_server_spec_dict = game_server_spec_instance.to_dict()
# create an instance of GameServerSpec from a dict
game_server_spec_from_dict = GameServerSpec.from_dict(game_server_spec_dict)

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