Package video.api.client.api.models
Class SummaryUpdatePayload
- java.lang.Object
-
- video.api.client.api.models.SummaryUpdatePayload
-
- All Implemented Interfaces:
Serializable,DeepObject
public class SummaryUpdatePayload extends Object implements Serializable, DeepObject
SummaryUpdatePayload- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static StringSERIALIZED_NAME_ABSTRACTstatic StringSERIALIZED_NAME_TAKEAWAYSstatic StringSERIALIZED_NAME_TITLE
-
Constructor Summary
Constructors Constructor Description SummaryUpdatePayload()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SummaryUpdatePayload_abstract(String _abstract)SummaryUpdatePayloadaddTakeawaysItem(String takeawaysItem)booleanequals(Object o)StringgetAbstract()A short outline of the contents of the video.List<String>getTakeaways()A list of 3 key points from the video, in chronological order.StringgetTitle()A video title, based on the contents of the video.inthashCode()voidsetAbstract(String _abstract)voidsetTakeaways(List<String> takeaways)voidsetTitle(String title)SummaryUpdatePayloadtakeaways(List<String> takeaways)SummaryUpdatePayloadtitle(String title)StringtoString()
-
-
-
Field Detail
-
SERIALIZED_NAME_TITLE
public static final String SERIALIZED_NAME_TITLE
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_ABSTRACT
public static final String SERIALIZED_NAME_ABSTRACT
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_TAKEAWAYS
public static final String SERIALIZED_NAME_TAKEAWAYS
- See Also:
- Constant Field Values
-
-
Method Detail
-
title
public SummaryUpdatePayload title(String title)
-
getTitle
@Nullable public String getTitle()
A video title, based on the contents of the video.- Returns:
- title
-
setTitle
public void setTitle(String title)
-
_abstract
public SummaryUpdatePayload _abstract(String _abstract)
-
getAbstract
@Nullable public String getAbstract()
A short outline of the contents of the video.- Returns:
- _abstract
-
setAbstract
public void setAbstract(String _abstract)
-
takeaways
public SummaryUpdatePayload takeaways(List<String> takeaways)
-
addTakeawaysItem
public SummaryUpdatePayload addTakeawaysItem(String takeawaysItem)
-
getTakeaways
@Nullable public List<String> getTakeaways()
A list of 3 key points from the video, in chronological order.- Returns:
- takeaways
-
-