Use section headers for shared types

This commit is contained in:
Josh Mock
2024-11-19 12:23:01 -06:00
parent 6151aab208
commit ab21735b57
469 changed files with 2639 additions and 2850 deletions

View File

@ -45,16 +45,16 @@ Get anomaly detection job results for influencers. Influencers are the entities
[source,ts]
----
interface MlGetInfluencersRequest extends <<shared-type-request-base, RequestBase>> {
job_id: <<shared-type-id, Id>>
interface MlGetInfluencersRequest extends <<RequestBase>> {
job_id: <<Id>>
desc?: boolean
end?: <<shared-type-date-time, DateTime>>
end?: <<DateTime>>
exclude_interim?: boolean
influencer_score?: <<shared-type-double, double>>
from?: <<shared-type-integer, integer>>
size?: <<shared-type-integer, integer>>
sort?: <<shared-type-field, Field>>
start?: <<shared-type-date-time, DateTime>>
influencer_score?: <<double>>
from?: <<integer>>
size?: <<integer>>
sort?: <<Field>>
start?: <<DateTime>>
page?: MlPage
}
----
@ -65,7 +65,7 @@ interface MlGetInfluencersRequest extends <<shared-type-request-base, RequestBas
[source,ts]
----
interface MlGetInfluencersResponse {
count: <<shared-type-long, long>>
count: <<long>>
influencers: MlInfluencer[]
}
----