Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.03 KB

File metadata and controls

30 lines (21 loc) · 1.03 KB

LinksSelfAndRoles

Properties

Name Type Description Notes
var_self HrefObjectSelfLink [optional]
roles HrefObjectRoleLink [optional]

Example

from okta.models.links_self_and_roles import LinksSelfAndRoles

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

# convert the object into a dict
links_self_and_roles_dict = links_self_and_roles_instance.to_dict()
# create an instance of LinksSelfAndRoles from a dict
links_self_and_roles_from_dict = LinksSelfAndRoles.from_dict(links_self_and_roles_dict)

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