/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { UserPartial } from './user'; export interface Attachment { id?: string; size: number; self?: string; filename?: string; author?: UserPartial; created?: string; mimeType?: string; properties?: Record; content?: string; thumbnail?: string; } //# sourceMappingURL=attachment.d.ts.map