/** * 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 about a group name. * @export * @interface GroupName */ export interface GroupName { /** * The name of group. * @type {string} * @memberof GroupName */ name?: string; /** * The URL for these group details. * @type {string} * @memberof GroupName */ readonly self?: string; } export declare function GroupNameFromJSON(json: any): GroupName; export declare function GroupNameFromJSONTyped(json: any, ignoreDiscriminator: boolean): GroupName; export declare function GroupNameToJSON(value?: GroupName): any;