Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.09 KB

File metadata and controls

32 lines (23 loc) · 1.09 KB

LinkedObjectDetails

Properties

Name Type Description Notes
description str [optional]
name str [optional]
title str [optional]
type LinkedObjectDetailsType [optional]

Example

from okta.models.linked_object_details import LinkedObjectDetails

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

# convert the object into a dict
linked_object_details_dict = linked_object_details_instance.to_dict()
# create an instance of LinkedObjectDetails from a dict
linked_object_details_from_dict = LinkedObjectDetails.from_dict(linked_object_details_dict)

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