InternalLink destinations configuration.
Name | Type | Description | Notes |
---|---|---|---|
name | str | Identifier of the Entity. | |
position | int | The position of an item in a series or sequence of items. | |
url | str | URL of the Entity. |
from wordlift_client.models.internal_link_destination import InternalLinkDestination
# TODO update the JSON string below
json = "{}"
# create an instance of InternalLinkDestination from a JSON string
internal_link_destination_instance = InternalLinkDestination.from_json(json)
# print the JSON string representation of the object
print(InternalLinkDestination.to_json())
# convert the object into a dict
internal_link_destination_dict = internal_link_destination_instance.to_dict()
# create an instance of InternalLinkDestination from a dict
internal_link_destination_from_dict = InternalLinkDestination.from_dict(internal_link_destination_dict)