/** * 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 { InlineResponse202ErrorMessages } from './'; /** * Represents error happened with particular entity * @export * @interface InlineResponse202Commits */ export interface InlineResponse202Commits { /** * Entity id * @type {string} * @memberof InlineResponse202Commits */ id: string; /** * Error message * @type {Array} * @memberof InlineResponse202Commits */ errorMessages?: Array; } export declare function InlineResponse202CommitsFromJSON(json: any): InlineResponse202Commits; export declare function InlineResponse202CommitsFromJSONTyped(json: any, ignoreDiscriminator: boolean): InlineResponse202Commits; export declare function InlineResponse202CommitsToJSON(value?: InlineResponse202Commits): any;