/** * 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 { Comment, IssueLinkType, LinkedIssue } from './'; /** * * @export * @interface LinkIssueRequestJsonBean */ export interface LinkIssueRequestJsonBean { /** * * @type {Comment} * @memberof LinkIssueRequestJsonBean */ comment?: Comment; /** * * @type {IssueLinkType} * @memberof LinkIssueRequestJsonBean */ type?: IssueLinkType; /** * * @type {LinkedIssue} * @memberof LinkIssueRequestJsonBean */ inwardIssue?: LinkedIssue; /** * * @type {LinkedIssue} * @memberof LinkIssueRequestJsonBean */ outwardIssue?: LinkedIssue; } export declare function LinkIssueRequestJsonBeanFromJSON(json: any): LinkIssueRequestJsonBean; export declare function LinkIssueRequestJsonBeanFromJSONTyped(json: any, ignoreDiscriminator: boolean): LinkIssueRequestJsonBean; export declare function LinkIssueRequestJsonBeanToJSON(value?: LinkIssueRequestJsonBean): any;