/** * The Jira Cloud platform REST API * Jira Cloud platform REST API documentation * * The version of the OpenAPI document: 1001.0.0-SNAPSHOT * Contact: ecosystem@atlassian.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { User } from './'; /** * Metadata for an issue attachment. * @export * @interface AttachmentMetadata */ export interface AttachmentMetadata { /** * The size of the attachment. * @type {number} * @memberof AttachmentMetadata */ readonly size?: number; /** * Additional properties of the attachment. * @type {{ [key: string]: object; }} * @memberof AttachmentMetadata */ readonly properties?: { [key: string]: object; }; /** * The ID of the attachment. * @type {number} * @memberof AttachmentMetadata */ readonly id?: number; /** * The MIME type of the attachment. * @type {string} * @memberof AttachmentMetadata */ readonly mimeType?: string; /** * The URL of the attachment. * @type {string} * @memberof AttachmentMetadata */ readonly content?: string; /** * The name of the attachment file. * @type {string} * @memberof AttachmentMetadata */ readonly filename?: string; /** * Details of the user who attached the file. * @type {User} * @memberof AttachmentMetadata */ readonly author?: User; /** * The datetime the attachment was created. * @type {Date} * @memberof AttachmentMetadata */ readonly created?: Date; /** * The URL of a thumbnail representing the attachment. * @type {string} * @memberof AttachmentMetadata */ readonly thumbnail?: string; /** * The URL of the attachment metadata details. * @type {string} * @memberof AttachmentMetadata */ readonly self?: string; } export declare function AttachmentMetadataFromJSON(json: any): AttachmentMetadata; export declare function AttachmentMetadataFromJSONTyped(json: any, ignoreDiscriminator: boolean): AttachmentMetadata; export declare function AttachmentMetadataToJSON(value?: AttachmentMetadata): any;