import { Relation } from 'typeorm'; import { Job } from './job'; export declare class JobAttachment { id: number; jobId: number; job: Relation; clientId: number; fileName: string; fileExtension: string | null; contentType: string | null; sizeBytes: number | null; s3FilesPath: string; createdBy: string; createdAt: Date; deletedAt: Date | null; deletedBy: string | null; }