28 lines
875 B
TypeScript
28 lines
875 B
TypeScript
/**
|
|
* API Documentation for Redaction Gateway
|
|
* Description for redaction
|
|
*
|
|
* OpenAPI spec version: 1.0
|
|
*
|
|
*
|
|
* NOTE: This class is auto generated by the swagger code generator program.
|
|
* https://github.com/swagger-api/swagger-codegen.git
|
|
* Do not edit the class manually.
|
|
*/
|
|
|
|
/**
|
|
* Object containing information on which file and report types should be included in the download.
|
|
*/
|
|
export interface PrepareDownloadRequest {
|
|
/**
|
|
* Which files should be included. Possible values are ORIGINAL, PREVIEW, REDACTED, ANNOTATED, FLATTEN
|
|
*/
|
|
downloadFileTypes?: Array<string>;
|
|
projectId?: string;
|
|
/**
|
|
* Which reports should be included. Possible values are SINGLE_FILE_EFSA_TEMPLATE, SINGLE_FILE_SYNGENTA_TEMPLATE, MULTI_FILE_EFSA_TEMPLATE, MULTI_FILE_SYNGENTA_TEMPLATE
|
|
*/
|
|
reportTypes?: Array<string>;
|
|
fileIds?: Array<string>;
|
|
}
|