Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 997 Bytes

Item.md

File metadata and controls

32 lines (23 loc) · 997 Bytes

Item

An Internal Link request item.

Properties

Name Type Description Notes
id str The entity id, reused in the output template. [optional]
query VectorSearchQueryRequest
source_name str The webpage name, reused in the output template. [optional]

Example

from wordlift_client.models.item import Item

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

# convert the object into a dict
item_dict = item_instance.to_dict()
# create an instance of Item from a dict
item_from_dict = Item.from_dict(item_dict)

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