/** * Jira Software Cloud API * Jira Software Cloud REST API documentation * * The version of the OpenAPI document: 1001.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { InlineResponse202AcceptedDevinfoEntities, InlineResponse202FailedDevinfoEntities } from './'; /** * The result of a successful store development information request * @export * @interface InlineResponse202 */ export interface InlineResponse202 { /** * The IDs of devinfo entities that have been accepted for submission grouped by their repository ids. Note that a devinfo entity that isn\'t updated due to it\'s updateSequenceId being out of order is not considered a failed submission. * @type {{ [key: string]: InlineResponse202AcceptedDevinfoEntities; }} * @memberof InlineResponse202 */ acceptedDevinfoEntities?: { [key: string]: InlineResponse202AcceptedDevinfoEntities; }; /** * IDs of devinfo entities that have not been accepted for submission and caused error descriptions, usually due to a problem with the request data. The entities (if present) will be grouped by their repository id and type. Entity IDs are listed with errors associated with that devinfo entity that have prevented it being submitted. * @type {{ [key: string]: InlineResponse202FailedDevinfoEntities; }} * @memberof InlineResponse202 */ failedDevinfoEntities?: { [key: string]: InlineResponse202FailedDevinfoEntities; }; /** * Issue keys that are not known on this Jira instance (if any). These may be invalid keys (e.g. `UTF-8` is sometimes incorrectly identified as a Jira issue key), or they may be for projects that no longer exist. If a devinfo entity has been associated with issue keys other than those in this array it will still be stored against those valid keys. * @type {Array} * @memberof InlineResponse202 */ unknownIssueKeys?: Array; } export declare function InlineResponse202FromJSON(json: any): InlineResponse202; export declare function InlineResponse202FromJSONTyped(json: any, ignoreDiscriminator: boolean): InlineResponse202; export declare function InlineResponse202ToJSON(value?: InlineResponse202): any;