/** * 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 { Fields } from './'; /** * The ID or key of a linked issue. * @export * @interface LinkedIssue */ export interface LinkedIssue { /** * The fields associated with the issue. * @type {Fields} * @memberof LinkedIssue */ readonly fields?: Fields; /** * The key of an issue. Required if `id` isn\'t provided. * @type {string} * @memberof LinkedIssue */ key?: string; /** * The ID of an issue. Required if `key` isn\'t provided. * @type {string} * @memberof LinkedIssue */ id?: string; /** * The URL of the issue. * @type {string} * @memberof LinkedIssue */ readonly self?: string; } export declare function LinkedIssueFromJSON(json: any): LinkedIssue; export declare function LinkedIssueFromJSONTyped(json: any, ignoreDiscriminator: boolean): LinkedIssue; export declare function LinkedIssueToJSON(value?: LinkedIssue): any;