fetch-jsd
Version:
A simple and typed library, based on OpenAPI spec from developer.atlassian.com, for accessing product APIs.
59 lines (58 loc) • 1.31 kB
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.
*/
import { SimpleLink } from './';
/**
* Details a link group, which defines issue operations.
* @export
* @interface LinkGroup
*/
export interface LinkGroup {
/**
*
* @type {string}
* @memberof LinkGroup
*/
id?: string;
/**
*
* @type {string}
* @memberof LinkGroup
*/
styleClass?: string;
/**
*
* @type {SimpleLink}
* @memberof LinkGroup
*/
header?: SimpleLink;
/**
*
* @type {number}
* @memberof LinkGroup
*/
weight?: number;
/**
*
* @type {Array<SimpleLink>}
* @memberof LinkGroup
*/
links?: Array<SimpleLink>;
/**
*
* @type {Array<LinkGroup>}
* @memberof LinkGroup
*/
groups?: Array<LinkGroup>;
}
export declare function LinkGroupFromJSON(json: any): LinkGroup;
export declare function LinkGroupFromJSONTyped(json: any, ignoreDiscriminator: boolean): LinkGroup;
export declare function LinkGroupToJSON(value?: LinkGroup): any;