Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.08 KB

File metadata and controls

30 lines (21 loc) · 1.08 KB

ResourceSetBindings

Properties

Name Type Description Notes
roles List[ResourceSetBindingRole] [optional]
links ResourceSetBindingResponseLinks [optional]

Example

from okta.models.resource_set_bindings import ResourceSetBindings

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

# convert the object into a dict
resource_set_bindings_dict = resource_set_bindings_instance.to_dict()
# create an instance of ResourceSetBindings from a dict
resource_set_bindings_from_dict = ResourceSetBindings.from_dict(resource_set_bindings_dict)

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