UpdateTemplateVariableDto

Properties

NameTypeDescriptionNotes
labelstrHuman-readable label for the variable[optional]
namestrVariable name (used in template placeholders)[optional]
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[optional]
data_typestrData type of the variable value[optional]
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.update_template_variable_dto import UpdateTemplateVariableDto

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

# convert the object into a dict
update_template_variable_dto_dict = update_template_variable_dto_instance.to_dict()
# create an instance of UpdateTemplateVariableDto from a dict
update_template_variable_dto_from_dict = UpdateTemplateVariableDto.from_dict(update_template_variable_dto_dict)

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