| Name | Type | Description | Notes |
|---|---|---|---|
| roles | List[ResourceSetBindingRole] | [optional] | |
| links | ResourceSetBindingResponseLinks | [optional] |
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)