Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1015 Bytes

GooglerpcStatus.md

File metadata and controls

31 lines (22 loc) · 1015 Bytes

GooglerpcStatus

Properties

Name Type Description Notes
code int [optional]
message str [optional]
details List[ProtobufAny] [optional]

Example

from agones_python_sdk.models.googlerpc_status import GooglerpcStatus

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

# convert the object into a dict
googlerpc_status_dict = googlerpc_status_instance.to_dict()
# create an instance of GooglerpcStatus from a dict
googlerpc_status_from_dict = GooglerpcStatus.from_dict(googlerpc_status_dict)

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