StringTypeString

属性

名称

类型

描述

备注

长文本

字符串

char

FixedCharChar

var_char

VarCharVarChar

示例

from gs_interactive.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_form_dict = string_type_string.from_dict(string_type_string_dict)

[返回模型列表] [返回API列表] [返回python_sdk]