pub struct HierarchyLevel {
pub id: Option<i64>,
pub name: Option<String>,
pub above_level_id: Option<i64>,
pub below_level_id: Option<i64>,
pub project_configuration_id: Option<i64>,
pub level: Option<i32>,
pub issue_type_ids: Option<Vec<i64>>,
pub external_uuid: Option<Uuid>,
pub global_hierarchy_level: Option<GlobalHierarchyLevel>,
}
Fields§
§id: Option<i64>
The ID of the hierarchy level. This property is deprecated, see Change notice: Removing hierarchy level IDs from next-gen APIs.
name: Option<String>
The name of this hierarchy level.
above_level_id: Option<i64>
The ID of the level above this one in the hierarchy. This property is deprecated, see Change notice: Removing hierarchy level IDs from next-gen APIs.
below_level_id: Option<i64>
The ID of the level below this one in the hierarchy. This property is deprecated, see Change notice: Removing hierarchy level IDs from next-gen APIs.
project_configuration_id: Option<i64>
The ID of the project configuration. This property is deprecated, see Change oticen: Removing hierarchy level IDs from next-gen APIs.
level: Option<i32>
The level of this item in the hierarchy.
issue_type_ids: Option<Vec<i64>>
The issue types available in this hierarchy level.
external_uuid: Option<Uuid>
The external UUID of the hierarchy level. This property is deprecated, see Change notice: Removing hierarchy level IDs from next-gen APIs.
global_hierarchy_level: Option<GlobalHierarchyLevel>
Implementations§
Source§impl HierarchyLevel
impl HierarchyLevel
pub fn new() -> HierarchyLevel
Trait Implementations§
Source§impl Clone for HierarchyLevel
impl Clone for HierarchyLevel
Source§fn clone(&self) -> HierarchyLevel
fn clone(&self) -> HierarchyLevel
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more