/** * 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. */ /** * * @export * @interface OperationMessage */ export interface OperationMessage { /** * The status code of the response. * @type {number} * @memberof OperationMessage */ statusCode: number; /** * The human-readable message that describes the result. * @type {string} * @memberof OperationMessage */ message: string; } export declare function OperationMessageFromJSON(json: any): OperationMessage; export declare function OperationMessageFromJSONTyped(json: any, ignoreDiscriminator: boolean): OperationMessage; export declare function OperationMessageToJSON(value?: OperationMessage): any;