Skip to content

ConvertDocumentsSources

Properties

Name Type Description Notes
file_url List[str] List of File's URL to be converted and uploaded to the data index. [optional]
internal_file_url List[InternalUrl] List of Internal File's URLs to be converted and uploaded to the data index. [optional]
s3_source S3DocumentSource Coordinates to object store to get files to convert. Can specify which files with object keys. [optional]

Example

from deepsearch.cps.apis.public_v2.models.convert_documents_sources import ConvertDocumentsSources

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

# convert the object into a dict
convert_documents_sources_dict = convert_documents_sources_instance.to_dict()
# create an instance of ConvertDocumentsSources from a dict
convert_documents_sources_form_dict = convert_documents_sources.from_dict(convert_documents_sources_dict)
[Back to Model list] [Back to API list] [Back to README]