/** * 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. */ import { SimpleLink } from './'; /** * Details a link group, which defines issue operations. * @export * @interface LinkGroup */ export interface LinkGroup { /** * * @type {Array} * @memberof LinkGroup */ groups?: Array; /** * * @type {number} * @memberof LinkGroup */ weight?: number; /** * * @type {Array} * @memberof LinkGroup */ links?: Array; /** * * @type {SimpleLink} * @memberof LinkGroup */ header?: SimpleLink; /** * * @type {string} * @memberof LinkGroup */ id?: string; /** * * @type {string} * @memberof LinkGroup */ styleClass?: string; } export declare function LinkGroupFromJSON(json: any): LinkGroup; export declare function LinkGroupFromJSONTyped(json: any, ignoreDiscriminator: boolean): LinkGroup; export declare function LinkGroupToJSON(value?: LinkGroup): any;