Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 853 Bytes

ProtobufAny.md

File metadata and controls

29 lines (20 loc) · 853 Bytes

ProtobufAny

Properties

Name Type Description Notes
type str [optional]

Example

from agones_python_sdk.models.protobuf_any import ProtobufAny

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

# convert the object into a dict
protobuf_any_dict = protobuf_any_instance.to_dict()
# create an instance of ProtobufAny from a dict
protobuf_any_from_dict = ProtobufAny.from_dict(protobuf_any_dict)

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