Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.17 KB

File metadata and controls

30 lines (21 loc) · 1.17 KB

ResourceSetBindingResponse

Properties

Name Type Description Notes
id str `id` of the role resource set binding [optional]
links ResourceSetBindingResponseLinks [optional]

Example

from okta.models.resource_set_binding_response import ResourceSetBindingResponse

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

# convert the object into a dict
resource_set_binding_response_dict = resource_set_binding_response_instance.to_dict()
# create an instance of ResourceSetBindingResponse from a dict
resource_set_binding_response_from_dict = ResourceSetBindingResponse.from_dict(resource_set_binding_response_dict)

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