/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { ApplicationAsResponse } from "../definitions/ApplicationAsResponse"; import { RemoteObjectAsResponse } from "../definitions/RemoteObjectAsResponse"; export interface RemoteIssueLinkAsResponse { /** * Details of the remote application the linked item is in. */ application?: ApplicationAsResponse; /** * The global ID of the link, such as the ID of the item on the remote system. */ globalId?: string; /** * The ID of the link. */ id?: number; /** * Details of the item linked to. */ object?: RemoteObjectAsResponse; /** * Description of the relationship between the issue and the linked item. */ relationship?: string; /** * The URL of the link. */ self?: string; } //# sourceMappingURL=RemoteIssueLinkAsResponse.d.ts.map