Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1 KB

InternalLink.md

File metadata and controls

30 lines (21 loc) · 1 KB

InternalLink

Properties

Name Type Description Notes
destinations List[InternalLinkDestination] InternalLink destinations configuration.
source InternalLinkSource

Example

from wordlift_client.models.internal_link import InternalLink

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

# convert the object into a dict
internal_link_dict = internal_link_instance.to_dict()
# create an instance of InternalLink from a dict
internal_link_from_dict = InternalLink.from_dict(internal_link_dict)

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