TypedValue¶
Properties¶
Name |
Type |
Description |
Notes |
---|---|---|---|
type |
|||
value |
object |
Example¶
from gs_interactive.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 python_sdk]