/** * 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 { IssueLinkType, LinkedIssue } from './'; /** * Details of a link between issues. * @export * @interface IssueLink */ export interface IssueLink { /** * The issue the link originates from. * @type {LinkedIssue} * @memberof IssueLink */ outwardIssue?: LinkedIssue; /** * The ID of the issue link. * @type {string} * @memberof IssueLink */ readonly id?: string; /** * The URL of the issue link. * @type {string} * @memberof IssueLink */ readonly self?: string; /** * The issue the link joins to. * @type {LinkedIssue} * @memberof IssueLink */ inwardIssue?: LinkedIssue; /** * The type of link between the issues. * @type {IssueLinkType} * @memberof IssueLink */ type?: IssueLinkType; } export declare function IssueLinkFromJSON(json: any): IssueLink; export declare function IssueLinkFromJSONTyped(json: any, ignoreDiscriminator: boolean): IssueLink; export declare function IssueLinkToJSON(value?: IssueLink): any;