| Name |
Type |
Description |
Notes |
| description |
str |
Description of the `primary` or the `associated` relationship |
[optional] |
| name |
str |
API name of the `primary` or the `associated` link. The `name` parameter can't start with a number and can only contain the following characters: `a-z`, `A-Z`,` 0-9`, and `_`. |
|
| title |
str |
Display name of the `primary` or the `associated` link |
|
| type |
LinkedObjectDetailsType |
|
|
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]