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