Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 937 Bytes

File metadata and controls

31 lines (22 loc) · 937 Bytes

RBACRoles

Properties

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

Example

from hyperstack.models.rbac_roles import RBACRoles

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

# convert the object into a dict
rbac_roles_dict = rbac_roles_instance.to_dict()
# create an instance of RBACRoles from a dict
rbac_roles_form_dict = rbac_roles.from_dict(rbac_roles_dict)

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