/** * 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 { HierarchyLevelOutput } from './'; /** * * @export * @interface HierarchyOutputFragment */ export interface HierarchyOutputFragment { /** * * @type {Array} * @memberof HierarchyOutputFragment */ hierarchy?: Array; /** * * @type {number} * @memberof HierarchyOutputFragment */ projectId?: number; } export declare function HierarchyOutputFragmentFromJSON(json: any): HierarchyOutputFragment; export declare function HierarchyOutputFragmentFromJSONTyped(json: any, ignoreDiscriminator: boolean): HierarchyOutputFragment; export declare function HierarchyOutputFragmentToJSON(value?: HierarchyOutputFragment): any;