Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.1 KB

File metadata and controls

29 lines (21 loc) · 1.1 KB

CustomFilterParameters

The parameters for setting the Custom Filter editing mode.

Properties

Name Type Description Notes
enabled bool Specifies whether the Custom Filter editing mode is enabled or not. [optional]

Example

from docspace_api_sdk.models.custom_filter_parameters import CustomFilterParameters

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

# convert the object into a dict
custom_filter_parameters_dict = custom_filter_parameters_instance.to_dict()
# create an instance of CustomFilterParameters from a dict
custom_filter_parameters_from_dict = CustomFilterParameters.from_dict(custom_filter_parameters_dict)

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