/** * Packshot PDF Service * handle pdf related functions * * The version of the OpenAPI document: 1.0.1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ export interface Pdf { id?: string; name?: string; objectStorePath?: string; checkSumType?: Pdf.CheckSumTypeEnum; checkSum?: string; } export declare namespace Pdf { type CheckSumTypeEnum = 'MD5' | 'SHA-1' | 'SHA-256' | 'SHA-512'; const CheckSumTypeEnum: { MD5: CheckSumTypeEnum; SHA1: CheckSumTypeEnum; SHA256: CheckSumTypeEnum; SHA512: CheckSumTypeEnum; }; }