Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.02 KB

File metadata and controls

31 lines (22 loc) · 1.02 KB

LinkedObject

Properties

Name Type Description Notes
associated LinkedObjectDetails [optional]
primary LinkedObjectDetails [optional]
links LinksSelf [optional]

Example

from okta.models.linked_object import LinkedObject

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

# convert the object into a dict
linked_object_dict = linked_object_instance.to_dict()
# create an instance of LinkedObject from a dict
linked_object_from_dict = LinkedObject.from_dict(linked_object_dict)

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