/** * 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 of the identifiers for a created or updated remote issue link. * @export * @interface RemoteIssueLinkIdentifies */ export interface RemoteIssueLinkIdentifies { /** * The ID of the remote issue link, such as the ID of the item on the remote system. * @type {number} * @memberof RemoteIssueLinkIdentifies */ readonly id?: number; /** * The URL of the remote issue link. * @type {string} * @memberof RemoteIssueLinkIdentifies */ readonly self?: string; } export declare function RemoteIssueLinkIdentifiesFromJSON(json: any): RemoteIssueLinkIdentifies; export declare function RemoteIssueLinkIdentifiesFromJSONTyped(json: any, ignoreDiscriminator: boolean): RemoteIssueLinkIdentifies; export declare function RemoteIssueLinkIdentifiesToJSON(value?: RemoteIssueLinkIdentifies): any;