Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.2 KB

SdkGameServer.md

File metadata and controls

32 lines (23 loc) · 1.2 KB

SdkGameServer

A GameServer Custom Resource Definition object We will only export those resources that make the most sense. Can always expand to more as needed.

Properties

Name Type Description Notes
object_meta GameServerObjectMeta [optional]
spec GameServerSpec [optional]
status SdkGameServerStatus [optional]

Example

from agones_python_sdk.models.sdk_game_server import SdkGameServer

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

# convert the object into a dict
sdk_game_server_dict = sdk_game_server_instance.to_dict()
# create an instance of SdkGameServer from a dict
sdk_game_server_from_dict = SdkGameServer.from_dict(sdk_game_server_dict)

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