Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 980 Bytes

File metadata and controls

29 lines (20 loc) · 980 Bytes

AssignRbacRolePayload

Properties

Name Type Description Notes
role_id int

Example

from hyperstack.models.assign_rbac_role_payload import AssignRbacRolePayload

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

# convert the object into a dict
assign_rbac_role_payload_dict = assign_rbac_role_payload_instance.to_dict()
# create an instance of AssignRbacRolePayload from a dict
assign_rbac_role_payload_from_dict = AssignRbacRolePayload.from_dict(assign_rbac_role_payload_dict)

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