Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 993 Bytes

PolicyResponse.md

File metadata and controls

31 lines (22 loc) · 993 Bytes

PolicyResponse

Properties

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

Example

from hyperstack.models.policy_response import PolicyResponse

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

# convert the object into a dict
policy_response_dict = policy_response_instance.to_dict()
# create an instance of PolicyResponse from a dict
policy_response_form_dict = policy_response.from_dict(policy_response_dict)

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