FixedChar¶
Properties¶
Name |
Type |
Description |
Notes |
---|---|---|---|
char |
Example¶
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_from_dict = FixedChar.from_dict(fixed_char_dict)
[Back to Model list] [Back to API list] [Back to python_sdk]