/** * 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 { MinimalIssueTypeOutput } from './'; /** * * @export * @interface HierarchyLevelOutput */ export interface HierarchyLevelOutput { /** * * @type {Array} * @memberof HierarchyLevelOutput */ issueTypes?: Array; /** * * @type {number} * @memberof HierarchyLevelOutput */ level?: number; /** * * @type {string} * @memberof HierarchyLevelOutput */ name?: string; /** * * @type {string} * @memberof HierarchyLevelOutput */ entityId?: string; } export declare function HierarchyLevelOutputFromJSON(json: any): HierarchyLevelOutput; export declare function HierarchyLevelOutputFromJSONTyped(json: any, ignoreDiscriminator: boolean): HierarchyLevelOutput; export declare function HierarchyLevelOutputToJSON(value?: HierarchyLevelOutput): any;