Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.26 KB

File metadata and controls

31 lines (22 loc) · 1.26 KB

ResourceSetBindingResponseLinks

Properties

Name Type Description Notes
var_self HrefObjectSelfLink [optional]
bindings HrefObject [optional]
resource_set HrefObject [optional]

Example

from okta.models.resource_set_binding_response_links import ResourceSetBindingResponseLinks

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

# convert the object into a dict
resource_set_binding_response_links_dict = resource_set_binding_response_links_instance.to_dict()
# create an instance of ResourceSetBindingResponseLinks from a dict
resource_set_binding_response_links_from_dict = ResourceSetBindingResponseLinks.from_dict(resource_set_binding_response_links_dict)

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