Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 876 Bytes

StatusPort.md

File metadata and controls

30 lines (21 loc) · 876 Bytes

StatusPort

Properties

Name Type Description Notes
name str [optional]
port int [optional]

Example

from agones_python_sdk.models.status_port import StatusPort

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

# convert the object into a dict
status_port_dict = status_port_instance.to_dict()
# create an instance of StatusPort from a dict
status_port_from_dict = StatusPort.from_dict(status_port_dict)

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