Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.06 KB

File metadata and controls

31 lines (22 loc) · 1.06 KB

ResourceSetLinks

Properties

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

Example

from okta.models.resource_set_links import ResourceSetLinks

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

# convert the object into a dict
resource_set_links_dict = resource_set_links_instance.to_dict()
# create an instance of ResourceSetLinks from a dict
resource_set_links_from_dict = ResourceSetLinks.from_dict(resource_set_links_dict)

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