/** * 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. */ /** * A group label. * @export * @interface GroupLabel */ export interface GroupLabel { /** * The type of the group label. * @type {string} * @memberof GroupLabel */ type?: GroupLabelTypeEnum; /** * The title of the group label. * @type {string} * @memberof GroupLabel */ title?: string; /** * The group label name. * @type {string} * @memberof GroupLabel */ text?: string; } export declare function GroupLabelFromJSON(json: any): GroupLabel; export declare function GroupLabelFromJSONTyped(json: any, ignoreDiscriminator: boolean): GroupLabel; export declare function GroupLabelToJSON(value?: GroupLabel): any; /** * @export * @enum {string} */ export declare enum GroupLabelTypeEnum { ADMIN = "ADMIN", SINGLE = "SINGLE", MULTIPLE = "MULTIPLE" }