| 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.create_policy_template_pack_response import CreatePolicyTemplatePackResponse
# TODO update the JSON string below
json = "{}"
# create an instance of CreatePolicyTemplatePackResponse from a JSON string
create_policy_template_pack_response_instance = CreatePolicyTemplatePackResponse.from_json(json)
# print the JSON string representation of the object
print(CreatePolicyTemplatePackResponse.to_json())
# convert the object into a dict
create_policy_template_pack_response_dict = create_policy_template_pack_response_instance.to_dict()
# create an instance of CreatePolicyTemplatePackResponse from a dict
create_policy_template_pack_response_form_dict = create_policy_template_pack_response.from_dict(create_policy_template_pack_response_dict)