/** * 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 { Application, RemoteObject } from './'; /** * Details of an issue remote link. * @export * @interface RemoteIssueLink */ export interface RemoteIssueLink { /** * Details of the item linked to. * @type {RemoteObject} * @memberof RemoteIssueLink */ object?: RemoteObject; /** * The global ID of the link, such as the ID of the item on the remote system. * @type {string} * @memberof RemoteIssueLink */ globalId?: string; /** * Description of the relationship between the issue and the linked item. * @type {string} * @memberof RemoteIssueLink */ relationship?: string; /** * The ID of the link. * @type {number} * @memberof RemoteIssueLink */ id?: number; /** * The URL of the link. * @type {string} * @memberof RemoteIssueLink */ self?: string; /** * Details of the remote application the linked item is in. * @type {Application} * @memberof RemoteIssueLink */ application?: Application; } export declare function RemoteIssueLinkFromJSON(json: any): RemoteIssueLink; export declare function RemoteIssueLinkFromJSONTyped(json: any, ignoreDiscriminator: boolean): RemoteIssueLink; export declare function RemoteIssueLinkToJSON(value?: RemoteIssueLink): any;