| 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 |
from onelens_backend_client.models.create_policy_template_pack_request import CreatePolicyTemplatePackRequest
# TODO update the JSON string below
json = "{}"
# create an instance of CreatePolicyTemplatePackRequest from a JSON string
create_policy_template_pack_request_instance = CreatePolicyTemplatePackRequest.from_json(json)
# print the JSON string representation of the object
print(CreatePolicyTemplatePackRequest.to_json())
# convert the object into a dict
create_policy_template_pack_request_dict = create_policy_template_pack_request_instance.to_dict()
# create an instance of CreatePolicyTemplatePackRequest from a dict
create_policy_template_pack_request_form_dict = create_policy_template_pack_request.from_dict(create_policy_template_pack_request_dict)