Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1010 Bytes

File metadata and controls

30 lines (21 loc) · 1010 Bytes

UserTypeLinks

Properties

Name Type Description Notes
var_self HrefObjectSelfLink [optional]
var_schema UserTypeLinksAllOfSchema [optional]

Example

from okta.models.user_type_links import UserTypeLinks

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

# convert the object into a dict
user_type_links_dict = user_type_links_instance.to_dict()
# create an instance of UserTypeLinks from a dict
user_type_links_from_dict = UserTypeLinks.from_dict(user_type_links_dict)

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