Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.17 KB

InternalLinkRequest.md

File metadata and controls

32 lines (23 loc) · 1.17 KB

InternalLinkRequest

An Internal Links request.

Properties

Name Type Description Notes
anchor_text AnchorText [optional]
items List[Item] An array of items.
template str The output template, not required, we provide a default JSON-LD template [optional]

Example

from wordlift_client.models.internal_link_request import InternalLinkRequest

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

# convert the object into a dict
internal_link_request_dict = internal_link_request_instance.to_dict()
# create an instance of InternalLinkRequest from a dict
internal_link_request_from_dict = InternalLinkRequest.from_dict(internal_link_request_dict)

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