Skip to content

Commit

Permalink
Replace bool with enum (PR review remark)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivan Arandjelovic committed Jul 24, 2024
1 parent 2185b52 commit 72142c4
Showing 1 changed file with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -229,9 +229,13 @@
"type": "integer",
"readOnly": true
},
"isUserError": {
"description": "Whether or not the error is a user error.",
"type": "boolean",
"errorType": {
"description": "Error type (e.g. None, User).",
"enum": [
"None",
"User"
],
"type": "string",
"readOnly": true
},
"estimatedCompletionTime": {
Expand Down

0 comments on commit 72142c4

Please sign in to comment.