Skip to content

Commit

Permalink
Apply appropriate casing to CommentThreadStatus property names
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeff Boccuzzi committed Sep 13, 2021
1 parent 3247a9e commit 6405681
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

/**
* The status of a comment thread
* Enum names match those here: https://docs.microsoft.com/en-us/rest/api/azure/devops/git/pull-request-threads/get?#commentthreadstatus
*/
public enum CommentThreadStatus {
/**
Expand All @@ -24,7 +25,7 @@ public enum CommentThreadStatus {
/**
* The thread status is resolved as won't fix.
*/
@JsonProperty("wontfix")
@JsonProperty("wontFix")
WONTFIX,
/**
* The thread status is closed.
Expand All @@ -34,7 +35,7 @@ public enum CommentThreadStatus {
/**
* The thread status is resolved as by design.
*/
@JsonProperty("bydesign")
@JsonProperty("byDesign")
BYDESIGN,
/**
* The thread status is pending.
Expand Down

0 comments on commit 6405681

Please sign in to comment.