Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.09 KB

StreamResultOfSdkGameServer.md

File metadata and controls

29 lines (20 loc) · 1.09 KB

StreamResultOfSdkGameServer

Properties

Name Type Description Notes
result SdkGameServer [optional]

Example

from agones_python_sdk.models.stream_result_of_sdk_game_server import StreamResultOfSdkGameServer

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

# convert the object into a dict
stream_result_of_sdk_game_server_dict = stream_result_of_sdk_game_server_instance.to_dict()
# create an instance of StreamResultOfSdkGameServer from a dict
stream_result_of_sdk_game_server_from_dict = StreamResultOfSdkGameServer.from_dict(stream_result_of_sdk_game_server_dict)

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