FixedCharChar¶
Properties¶
Name |
Type |
Description |
Notes |
---|---|---|---|
fixed_length |
int |
Example¶
from gs_interactive.models.fixed_char_char import FixedCharChar
# TODO update the JSON string below
json = "{}"
# create an instance of FixedCharChar from a JSON string
fixed_char_char_instance = FixedCharChar.from_json(json)
# print the JSON string representation of the object
print(FixedCharChar.to_json())
# convert the object into a dict
fixed_char_char_dict = fixed_char_char_instance.to_dict()
# create an instance of FixedCharChar from a dict
fixed_char_char_from_dict = FixedCharChar.from_dict(fixed_char_char_dict)
[Back to Model list] [Back to API list] [Back to python_sdk]