/** * 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. */ /** * * @export * @interface HierarchyLevel */ export interface HierarchyLevel { /** * * @type {number} * @memberof HierarchyLevel */ aboveLevelId?: number; /** * * @type {number} * @memberof HierarchyLevel */ id?: number; /** * * @type {Array} * @memberof HierarchyLevel */ issueTypeIds?: Array; /** * * @type {number} * @memberof HierarchyLevel */ projectConfigurationId?: number; /** * * @type {string} * @memberof HierarchyLevel */ externalUuid?: string; /** * * @type {string} * @memberof HierarchyLevel */ name?: string; /** * * @type {number} * @memberof HierarchyLevel */ belowLevelId?: number; } export declare function HierarchyLevelFromJSON(json: any): HierarchyLevel; export declare function HierarchyLevelFromJSONTyped(json: any, ignoreDiscriminator: boolean): HierarchyLevel; export declare function HierarchyLevelToJSON(value?: HierarchyLevel): any;