CreateTemplateVariableDto

Properties

NameTypeDescriptionNotes
labelstrHuman-readable label for the variable
namestrVariable name (used in template placeholders)
named_columnsboolWhether the variable uses named columns[optional] [default to False]
column_namesList[str]Column names (for table-type variables)[optional]
column_data_typesList[str]Data types for each column[optional]
typestrVariable type
data_typestrData type of the variable value
data_optionsTemplateVariableDataOptionsAdditional options for the data type[optional]
current_valuefloatCurrent value (used for autonumber counters)[optional]
format_stringstrFormat string (used for autonumber formatting)[optional]
optionalboolWhether the variable is optional[optional] [default to False]

Example

from pdf_generator_client.models.create_template_variable_dto import CreateTemplateVariableDto

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

# convert the object into a dict
create_template_variable_dto_dict = create_template_variable_dto_instance.to_dict()
# create an instance of CreateTemplateVariableDto from a dict
create_template_variable_dto_from_dict = CreateTemplateVariableDto.from_dict(create_template_variable_dto_dict)

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