Name | Type | Description | Notes |
---|---|---|---|
alias | str | The alias of the policy template pack | |
category | PolicyCategory | The category of the policy template pack | |
provider | Provider | The provider of the policy template pack | |
details | PolicyTemplatePackDetails | The details of the policy template pack | |
id | str | The unique identifier of the policy template pack | |
state | PolicyTemplatePackState | The state of the policy template pack |
from onelens_backend_client.models.policy_template_pack import PolicyTemplatePack
# TODO update the JSON string below
json = "{}"
# create an instance of PolicyTemplatePack from a JSON string
policy_template_pack_instance = PolicyTemplatePack.from_json(json)
# print the JSON string representation of the object
print(PolicyTemplatePack.to_json())
# convert the object into a dict
policy_template_pack_dict = policy_template_pack_instance.to_dict()
# create an instance of PolicyTemplatePack from a dict
policy_template_pack_form_dict = policy_template_pack.from_dict(policy_template_pack_dict)