StringType

Properties

Name

Type

Description

Notes

string

StringTypeString

Example

from interactive_sdk.openapi.models.string_type import StringType

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

# convert the object into a dict
string_type_dict = string_type_instance.to_dict()
# create an instance of StringType from a dict
string_type_from_dict = StringType.from_dict(string_type_dict)

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