Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.17 KB

InternalLinkDestination.md

File metadata and controls

32 lines (23 loc) · 1.17 KB

InternalLinkDestination

InternalLink destinations configuration.

Properties

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.

Example

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)

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