Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.09 KB

File metadata and controls

30 lines (21 loc) · 1.09 KB

ResourceSetBindingRole

Properties

Name Type Description Notes
id str `id` of the role [optional]
links ResourceSetBindingRoleLinks [optional]

Example

from okta.models.resource_set_binding_role import ResourceSetBindingRole

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

# convert the object into a dict
resource_set_binding_role_dict = resource_set_binding_role_instance.to_dict()
# create an instance of ResourceSetBindingRole from a dict
resource_set_binding_role_from_dict = ResourceSetBindingRole.from_dict(resource_set_binding_role_dict)

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