Defines filter and sort option for root data set.
| Name | Type | Description | Notes |
|---|---|---|---|
| sort_by | List[object] | [optional] | |
| filter_by | List[object] | [optional] |
from pdf_generator_api_client.models.template_definition_data_settings import TemplateDefinitionDataSettings
# TODO update the JSON string below
json = "{}"
# create an instance of TemplateDefinitionDataSettings from a JSON string
template_definition_data_settings_instance = TemplateDefinitionDataSettings.from_json(json)
# print the JSON string representation of the object
print(TemplateDefinitionDataSettings.to_json())
# convert the object into a dict
template_definition_data_settings_dict = template_definition_data_settings_instance.to_dict()
# create an instance of TemplateDefinitionDataSettings from a dict
template_definition_data_settings_from_dict = TemplateDefinitionDataSettings.from_dict(template_definition_data_settings_dict)