Skip to content

ConvertDocumentsRequestBodyTargetSettings

Specify the target settings to use.

Properties

Name Type Description Notes
add_raw_pages AddRawPages [optional]
add_annotations AddAnnotations [optional]

Example

from deepsearch.cps.apis.public_v2.models.convert_documents_request_body_target_settings import ConvertDocumentsRequestBodyTargetSettings

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

# convert the object into a dict
convert_documents_request_body_target_settings_dict = convert_documents_request_body_target_settings_instance.to_dict()
# create an instance of ConvertDocumentsRequestBodyTargetSettings from a dict
convert_documents_request_body_target_settings_form_dict = convert_documents_request_body_target_settings.from_dict(convert_documents_request_body_target_settings_dict)
[Back to Model list] [Back to API list] [Back to README]