| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | [optional] |
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)