You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PaginatedConfigurationTemplateList Object ### Description The PaginatedConfigurationTemplateList object is used to store a list of configuration templates. ### Usage Example Returned from the GET Configuration Templates endpoint.
fromopal_security.models.paginated_configuration_template_listimportPaginatedConfigurationTemplateList# TODO update the JSON string belowjson="{}"# create an instance of PaginatedConfigurationTemplateList from a JSON stringpaginated_configuration_template_list_instance=PaginatedConfigurationTemplateList.from_json(json)
# print the JSON string representation of the objectprint(PaginatedConfigurationTemplateList.to_json())
# convert the object into a dictpaginated_configuration_template_list_dict=paginated_configuration_template_list_instance.to_dict()
# create an instance of PaginatedConfigurationTemplateList from a dictpaginated_configuration_template_list_from_dict=PaginatedConfigurationTemplateList.from_dict(paginated_configuration_template_list_dict)