/*! * Copyright Adaptavist 2022 (c) All rights reserved */ export interface IssueTypeCreateBean { /** * The description of the issue type. */ description?: string; /** * The hierarchy level of the issue type. Use: * `-1` for Subtask. * `0` for Base. Defaults to `0`. */ hierarchyLevel?: number; /** * The unique name for the issue type. The maximum length is 60 characters. */ name: string; /** * Deprecated. Use `hierarchyLevel` instead. See the [deprecation notice](https://community.developer.atlassian.com/t/deprecation-of-the-epic-link-parent-link-and-other-related-fields-in-rest-apis-and-webhooks/54048) for details. Whether the issue type is `subtype` or `standard`. Defaults to `standard`. */ type?: "subtask" | "standard"; } //# sourceMappingURL=IssueTypeCreateBean.d.ts.map