/** * 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 { IssueLinkType } from './'; /** * A list of issue link type beans. * @export * @interface IssueLinkTypes */ export interface IssueLinkTypes { /** * The issue link type bean. * @type {Array} * @memberof IssueLinkTypes */ readonly issueLinkTypes?: Array; } export declare function IssueLinkTypesFromJSON(json: any): IssueLinkTypes; export declare function IssueLinkTypesFromJSONTyped(json: any, ignoreDiscriminator: boolean): IssueLinkTypes; export declare function IssueLinkTypesToJSON(value?: IssueLinkTypes): any;