/** * 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 the operations available in this version. * @export * @interface SimpleLink */ export interface SimpleLink { /** * * @type {string} * @memberof SimpleLink */ href?: string; /** * * @type {number} * @memberof SimpleLink */ weight?: number; /** * * @type {string} * @memberof SimpleLink */ title?: string; /** * * @type {string} * @memberof SimpleLink */ label?: string; /** * * @type {string} * @memberof SimpleLink */ id?: string; /** * * @type {string} * @memberof SimpleLink */ styleClass?: string; /** * * @type {string} * @memberof SimpleLink */ iconClass?: string; } export declare function SimpleLinkFromJSON(json: any): SimpleLink; export declare function SimpleLinkFromJSONTyped(json: any, ignoreDiscriminator: boolean): SimpleLink; export declare function SimpleLinkToJSON(value?: SimpleLink): any;