import { Attachment } from './attachment'; import { DebugModeLog } from './debugModeLog'; import { ErrorValidationProblem } from './errorValidationProblem'; import { WarningValidationProblem } from './warningValidationProblem'; export declare class AttachmentResponse { 'model': Attachment; 'warnings': Array; 'errors': Array; 'logs'?: Array; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }