Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.15 KB

File metadata and controls

31 lines (22 loc) · 1.15 KB

RbacRoleDetailResponseModel

Properties

Name Type Description Notes
message str [optional]
role RbacRoleFields [optional]
status bool [optional]

Example

from hyperstack.models.rbac_role_detail_response_model import RbacRoleDetailResponseModel

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

# convert the object into a dict
rbac_role_detail_response_model_dict = rbac_role_detail_response_model_instance.to_dict()
# create an instance of RbacRoleDetailResponseModel from a dict
rbac_role_detail_response_model_from_dict = RbacRoleDetailResponseModel.from_dict(rbac_role_detail_response_model_dict)

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