Class PivotSuggestions
- java.lang.Object
-
- com.microsoft.azure.cognitiveservices.search.videosearch.models.PivotSuggestions
-
public class PivotSuggestions extends Object
The PivotSuggestions model.
-
-
Constructor Summary
Constructors Constructor Description PivotSuggestions()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Stringpivot()Get the pivot value.List<Query>suggestions()Get the suggestions value.PivotSuggestionswithPivot(String pivot)Set the pivot value.PivotSuggestionswithSuggestions(List<Query> suggestions)Set the suggestions value.
-
-
-
Method Detail
-
pivot
public String pivot()
Get the pivot value.- Returns:
- the pivot value
-
withPivot
public PivotSuggestions withPivot(String pivot)
Set the pivot value.- Parameters:
pivot- the pivot value to set- Returns:
- the PivotSuggestions object itself.
-
suggestions
public List<Query> suggestions()
Get the suggestions value.- Returns:
- the suggestions value
-
withSuggestions
public PivotSuggestions withSuggestions(List<Query> suggestions)
Set the suggestions value.- Parameters:
suggestions- the suggestions value to set- Returns:
- the PivotSuggestions object itself.
-
-