TemplateVariable

Properties

NameTypeDescriptionNotes
idfloat
created_atdatetime
updated_atdatetime
labelstr
namestr
named_columnsbool
column_namesList[str]
column_data_typesList[str]
typestr
data_typestr
data_optionsTemplateVariableDataOptions
current_valuefloat
format_stringstr
optionalbool
templatePdfTemplate
organizationOrganization[optional]
templatesobject

Example

from pdf_generator_client.models.template_variable import TemplateVariable

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

# convert the object into a dict
template_variable_dict = template_variable_instance.to_dict()
# create an instance of TemplateVariable from a dict
template_variable_from_dict = TemplateVariable.from_dict(template_variable_dict)

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