Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 878 Bytes

File metadata and controls

29 lines (20 loc) · 878 Bytes

RbacRoleField

Properties

Name Type Description Notes
name str [optional]

Example

from hyperstack.models.rbac_role_field import RbacRoleField

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

# convert the object into a dict
rbac_role_field_dict = rbac_role_field_instance.to_dict()
# create an instance of RbacRoleField from a dict
rbac_role_field_from_dict = RbacRoleField.from_dict(rbac_role_field_dict)

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