Fix number type links

This commit is contained in:
Josh Mock
2024-11-20 13:07:25 -06:00
parent d9938f7973
commit 7a997b3405
114 changed files with 834 additions and 834 deletions

View File

@ -51,9 +51,9 @@ Get anomaly detection job results for categories.
interface MlGetCategoriesRequest extends <<RequestBase>> {
job_id: <<Id>>
category_id?: <<CategoryId>>
from?: <<_integer, integer>>
from?: <<integer>>
partition_field_value?: string
size?: <<_integer, integer>>
size?: <<integer>>
page?: MlPage
}
@ -70,7 +70,7 @@ interface MlGetCategoriesRequest extends <<RequestBase>> {
++++
interface MlGetCategoriesResponse {
categories: MlCategory[]
count: <<_long, long>>
count: <<long>>
}
[pass]