fetch-jsd
Version:
A simple and typed library, based on OpenAPI spec from developer.atlassian.com, for accessing product APIs.
34 lines (33 loc) • 892 B
TypeScript
/**
* Service Desk Public REST API
* Public REST API for Jira Service Desk
*
* The version of the OpenAPI document: 1001.0.0-SNAPSHOT
*
*
* 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 I18nErrorMessage
*/
export interface I18nErrorMessage {
/**
*
* @type {string}
* @memberof I18nErrorMessage
*/
i18nKey?: string;
/**
*
* @type {Array<string>}
* @memberof I18nErrorMessage
*/
parameters?: Array<string>;
}
export declare function I18nErrorMessageFromJSON(json: any): I18nErrorMessage;
export declare function I18nErrorMessageFromJSONTyped(json: any, ignoreDiscriminator: boolean): I18nErrorMessage;
export declare function I18nErrorMessageToJSON(value?: I18nErrorMessage): any;