/** * 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 { ErrorCollection } from './'; /** * * @export * @interface NestedResponse */ export interface NestedResponse { /** * * @type {number} * @memberof NestedResponse */ status?: number; /** * * @type {ErrorCollection} * @memberof NestedResponse */ errorCollection?: ErrorCollection; } export declare function NestedResponseFromJSON(json: any): NestedResponse; export declare function NestedResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): NestedResponse; export declare function NestedResponseToJSON(value?: NestedResponse): any;