TypedValue

Properties

Name

Type

Description

Notes

type

GSDataType

value

object

Example

from interactive_sdk.openapi.models.typed_value import TypedValue

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

# convert the object into a dict
typed_value_dict = typed_value_instance.to_dict()
# create an instance of TypedValue from a dict
typed_value_from_dict = TypedValue.from_dict(typed_value_dict)

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