| Name | Type | Description | Notes |
|---|---|---|---|
| message | str | [optional] | |
| policies | List[PolicyFields] | [optional] | |
| status | bool | [optional] |
from hyperstack.models.get_policies_response_model import GetPoliciesResponseModel
# TODO update the JSON string below
json = "{}"
# create an instance of GetPoliciesResponseModel from a JSON string
get_policies_response_model_instance = GetPoliciesResponseModel.from_json(json)
# print the JSON string representation of the object
print(GetPoliciesResponseModel.to_json())
# convert the object into a dict
get_policies_response_model_dict = get_policies_response_model_instance.to_dict()
# create an instance of GetPoliciesResponseModel from a dict
get_policies_response_model_from_dict = GetPoliciesResponseModel.from_dict(get_policies_response_model_dict)