Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.36 KB

BotifyCrawlImportRequest.md

File metadata and controls

37 lines (28 loc) · 1.36 KB

BotifyCrawlImportRequest

The Botify Crawl Import request

Properties

Name Type Description Notes
collection str [optional]
description List[str] [optional]
filters List[Filter] [optional]
headline str [optional]
request_embeddings List[str] [optional]
text List[str] [optional]
types List[str] [optional]
url str [optional]

Example

from wordlift_client.models.botify_crawl_import_request import BotifyCrawlImportRequest

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

# convert the object into a dict
botify_crawl_import_request_dict = botify_crawl_import_request_instance.to_dict()
# create an instance of BotifyCrawlImportRequest from a dict
botify_crawl_import_request_from_dict = BotifyCrawlImportRequest.from_dict(botify_crawl_import_request_dict)

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