export interface FileAttachmentInfo { fileName: string; preSignedUrl: string; s3Path: string; errorMessage?: string | null; } export interface GetFileUploadPresignedUrlsResponse { status: boolean; body: FileAttachmentInfo[] | { errorCodes: string[]; }; message: string; }