Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 917 Bytes

File metadata and controls

31 lines (22 loc) · 917 Bytes

RBACRole

Properties

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

Example

from hyperstack.models.rbac_role import RBACRole

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

# convert the object into a dict
rbac_role_dict = rbac_role_instance.to_dict()
# create an instance of RBACRole from a dict
rbac_role_form_dict = rbac_role.from_dict(rbac_role_dict)

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