StringTypeString

Properties

Name

Type

Description

Notes

long_text

str

char

FixedCharChar

var_char

VarCharVarChar

Example

from interactive_sdk.openapi.models.string_type_string import StringTypeString

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

# convert the object into a dict
string_type_string_dict = string_type_string_instance.to_dict()
# create an instance of StringTypeString from a dict
string_type_string_from_dict = StringTypeString.from_dict(string_type_string_dict)

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