/** * 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. */ /** * Details of a locale. * @export * @interface Locale */ export interface Locale { /** * The locale code. The Java the locale format is used: a two character language code (ISO 639), an underscore, and two letter country code (ISO 3166). For example, en\\_US represents a locale of English (United States). Required on create. * @type {string} * @memberof Locale */ locale?: string; } export declare function LocaleFromJSON(json: any): Locale; export declare function LocaleFromJSONTyped(json: any, ignoreDiscriminator: boolean): Locale; export declare function LocaleToJSON(value?: Locale): any;