export interface IFileDataStatus { state: string; jobId?: string; jobUrl?: string; } export interface IFileStatus { geometry: IFileDataStatus; geometryGltf: IFileDataStatus; properties: IFileDataStatus; validation: IFileDataStatus; } /** * Reference to file. */ export interface IFileReference { /** * The ID of the referenced file. */ id: string; /** * The name of the referenced file. */ name: string; } /** * References are images, fonts, or any other files to correct rendering of the file. */ export interface IFileReferences { /** * The references ID, changed after each update of the file references. */ id: string; /** * List of file references or `null` if there are no references. */ references: IFileReference[] | null; } export interface IFileVersionInfo { fileId: string; status: object; version: number; createdAt: string; size: number; ownerId: string; } //# sourceMappingURL=IFile.d.ts.map