Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.2 KB

File metadata and controls

31 lines (22 loc) · 1.2 KB

CreateUpdatePolicyResponseModel

Properties

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

Example

from hyperstack.models.create_update_policy_response_model import CreateUpdatePolicyResponseModel

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

# convert the object into a dict
create_update_policy_response_model_dict = create_update_policy_response_model_instance.to_dict()
# create an instance of CreateUpdatePolicyResponseModel from a dict
create_update_policy_response_model_from_dict = CreateUpdatePolicyResponseModel.from_dict(create_update_policy_response_model_dict)

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