Skip to content

Commit

Permalink
Make the level a pointer
Browse files Browse the repository at this point in the history
  • Loading branch information
estephinson committed Jan 18, 2024
1 parent e7dc325 commit fbf78c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion issue.go
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ type IssueType struct {
Name string `json:"name,omitempty" structs:"name,omitempty"`
Subtask bool `json:"subtask,omitempty" structs:"subtask,omitempty"`
AvatarID int `json:"avatarId,omitempty" structs:"avatarId,omitempty"`
HierarchyLevel int `json:"hierarchyLevel,omitempty" structs:"hierarchyLevel,omitempty"`
HierarchyLevel *int `json:"hierarchyLevel,omitempty" structs:"hierarchyLevel,omitempty"`
}

// Watches represents a type of how many and which user are "observing" a Jira issue to track the status / updates.
Expand Down

0 comments on commit fbf78c6

Please sign in to comment.