Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 916 Bytes

File metadata and controls

31 lines (22 loc) · 916 Bytes

Policies

Properties

Name Type Description Notes
status bool [optional]
message str [optional]
policies List[PolicyFields] [optional]

Example

from hyperstack.models.policies import Policies

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

# convert the object into a dict
policies_dict = policies_instance.to_dict()
# create an instance of Policies from a dict
policies_form_dict = policies.from_dict(policies_dict)

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