Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.02 KB

StringFormat.md

File metadata and controls

31 lines (22 loc) · 1.02 KB

StringFormat

Properties

Name Type Description Notes
type StringGeneratorType [optional]
static_value str Static Value [optional]
padding int Optional padding for AUTO_INCREMENT number [optional]

Example

from formkiq_client.models.string_format import StringFormat

# TODO update the JSON string below
json = "{}"
# create an instance of StringFormat from a JSON string
string_format_instance = StringFormat.from_json(json)
# print the JSON string representation of the object
print(StringFormat.to_json())

# convert the object into a dict
string_format_dict = string_format_instance.to_dict()
# create an instance of StringFormat from a dict
string_format_from_dict = StringFormat.from_dict(string_format_dict)

[Back to Model list] [Back to API list] [Back to README]