Skip to content

Commit

Permalink
[Cognitive Services] Change type of limit/currentValue to double from…
Browse files Browse the repository at this point in the history
… integer (Azure#2627)

Change limit/currentValue to double from integer
  • Loading branch information
felixwa authored and fearthecowboy committed Mar 12, 2018
1 parent 821f2ae commit 542fea3
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -956,12 +956,14 @@
"description": "The quota period used to summarize the usage values."
},
"limit": {
"type": "integer",
"type": "number",
"format": "double",
"readOnly": true,
"description": "Maximum value for this metric."
},
"currentValue": {
"type": "integer",
"type": "number",
"format": "double",
"readOnly": true,
"description": "Current value for this metric."
},
Expand Down

0 comments on commit 542fea3

Please sign in to comment.