/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { UserAsResponse } from "../definitions/UserAsResponse"; export interface AttachmentMetadataAsResponse { /** * Details of the user who attached the file. */ author?: UserAsResponse; /** * The URL of the attachment. */ content?: string; /** * The datetime the attachment was created. */ created?: string; /** * The name of the attachment file. */ filename?: string; /** * The ID of the attachment. */ id?: number; /** * The MIME type of the attachment. */ mimeType?: string; /** * Additional properties of the attachment. */ properties?: { [x: string]: any; }; /** * The URL of the attachment metadata details. */ self?: string; /** * The size of the attachment. */ size?: number; /** * The URL of a thumbnail representing the attachment. */ thumbnail?: string; } //# sourceMappingURL=AttachmentMetadataAsResponse.d.ts.map