/** * 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. */ /** * Details of the instance\'s attachment settings. * @export * @interface AttachmentSettings */ export interface AttachmentSettings { /** * Whether the ability to add attachments is enabled. * @type {boolean} * @memberof AttachmentSettings */ readonly enabled?: boolean; /** * The maximum size of attachments permitted, in bytes. * @type {number} * @memberof AttachmentSettings */ readonly uploadLimit?: number; } export declare function AttachmentSettingsFromJSON(json: any): AttachmentSettings; export declare function AttachmentSettingsFromJSONTyped(json: any, ignoreDiscriminator: boolean): AttachmentSettings; export declare function AttachmentSettingsToJSON(value?: AttachmentSettings): any;