VarChar¶
属性¶
名称 |
类型 |
描述 |
备注 |
|---|---|---|---|
var_char |
示例¶
from gs_interactive.models.var_char import VarChar
# TODO update the JSON string below
json = "{}"
# create an instance of VarChar from a JSON string
var_char_instance = VarChar.from_json(json)
# print the JSON string representation of the object
print VarChar.to_json()
# convert the object into a dict
var_char_dict = var_char_instance.to_dict()
# create an instance of VarChar from a dict
var_char_form_dict = var_char.from_dict(var_char_dict)