Class Summary
- java.lang.Object
-
- ai.rev.speechtotext.models.asynchronous.Summary
-
public class Summary extends Object
A Summary object represents summarization job results provided either as paragraph summary of bullet points, depending on the requested format.- See Also:
SummarizationOptions
-
-
Constructor Summary
Constructors Constructor Description Summary()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<String>getBulletPoints()Returns bullet points summary if it was requested as BULLETSStringgetSummary()Returns paragraph summary if it was requested as PARAGRAPH
-
-
-
Method Detail
-
getSummary
public String getSummary()
Returns paragraph summary if it was requested as PARAGRAPH- See Also:
SummarizationFormattingOptions
-
getBulletPoints
public List<String> getBulletPoints()
Returns bullet points summary if it was requested as BULLETS- See Also:
SummarizationFormattingOptions
-
-