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
Configuration Template Object ### Description The ConfigurationTemplate object is used to represent a configuration template. ### Usage Example Returned from the GET Configuration Templates endpoint.
Properties
Name
Type
Description
Notes
configuration_template_id
UUID
The ID of the configuration template.
[optional]
name
str
The name of the configuration template.
[optional]
admin_owner_id
UUID
The ID of the owner of the configuration template.
Custom request notification sent upon request approval for this configuration template.
[optional]
Example
fromopal_security.models.configuration_templateimportConfigurationTemplate# TODO update the JSON string belowjson="{}"# create an instance of ConfigurationTemplate from a JSON stringconfiguration_template_instance=ConfigurationTemplate.from_json(json)
# print the JSON string representation of the objectprint(ConfigurationTemplate.to_json())
# convert the object into a dictconfiguration_template_dict=configuration_template_instance.to_dict()
# create an instance of ConfigurationTemplate from a dictconfiguration_template_from_dict=ConfigurationTemplate.from_dict(configuration_template_dict)