SuggestedTagAndRegionQueryToken interface
Contains properties we need to fetch suggested tags for. For the first call, Session and continuation set to null. Then on subsequent calls, uses the session/continuation from the previous SuggestedTagAndRegionQuery result to fetch additional results.
Properties
continuation | Continuation Id for database pagination. Initially null but later used to paginate. |
max |
Maximum number of results you want to be returned in the response. |
session | SessionId for database query. Initially set to null but later used to paginate. |
sort |
OrderBy. Ordering mechanism for your results. Possible values include: 'UncertaintyAscending', 'UncertaintyDescending' |
tag |
Existing TagIds in project to filter suggested tags on. |
threshold | Confidence threshold to filter suggested tags on. |
Property Details
continuation
Continuation Id for database pagination. Initially null but later used to paginate.
continuation?: string
Property Value
string
maxCount
Maximum number of results you want to be returned in the response.
maxCount?: number
Property Value
number
session
SessionId for database query. Initially set to null but later used to paginate.
session?: string
Property Value
string
sortBy
OrderBy. Ordering mechanism for your results. Possible values include: 'UncertaintyAscending', 'UncertaintyDescending'
sortBy?: SortBy
Property Value
tagIds
Existing TagIds in project to filter suggested tags on.
tagIds?: string[]
Property Value
string[]
threshold
Confidence threshold to filter suggested tags on.
threshold?: number
Property Value
number