/** * 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 { SimpleErrorCollection } from './'; /** * * @export * @interface RemoveOptionFromIssuesResult */ export interface RemoveOptionFromIssuesResult { /** * A collection of errors related to unchanged issues. The collection size is limited, which means not all errors may be returned. * @type {SimpleErrorCollection} * @memberof RemoveOptionFromIssuesResult */ errors?: SimpleErrorCollection; /** * The IDs of the modified issues. * @type {Array} * @memberof RemoveOptionFromIssuesResult */ modifiedIssues?: Array; /** * The IDs of the unchanged issues, those issues where errors prevent modification. * @type {Array} * @memberof RemoveOptionFromIssuesResult */ unmodifiedIssues?: Array; } export declare function RemoveOptionFromIssuesResultFromJSON(json: any): RemoveOptionFromIssuesResult; export declare function RemoveOptionFromIssuesResultFromJSONTyped(json: any, ignoreDiscriminator: boolean): RemoveOptionFromIssuesResult; export declare function RemoveOptionFromIssuesResultToJSON(value?: RemoveOptionFromIssuesResult): any;