Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 985 Bytes

File metadata and controls

30 lines (21 loc) · 985 Bytes

PolicyTemplateSpec

Properties

Name Type Description Notes
display_name str [optional]
setting_name str

Example

from halo_client.models.policy_template_spec import PolicyTemplateSpec

# TODO update the JSON string below
json = "{}"
# create an instance of PolicyTemplateSpec from a JSON string
policy_template_spec_instance = PolicyTemplateSpec.from_json(json)
# print the JSON string representation of the object
print(PolicyTemplateSpec.to_json())

# convert the object into a dict
policy_template_spec_dict = policy_template_spec_instance.to_dict()
# create an instance of PolicyTemplateSpec from a dict
policy_template_spec_from_dict = PolicyTemplateSpec.from_dict(policy_template_spec_dict)

[Back to Model list] [Back to API list] [Back to README]