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