Package video.api.client.api.models
Class LiveStreamSessionReferrer
- java.lang.Object
-
- video.api.client.api.models.LiveStreamSessionReferrer
-
- All Implemented Interfaces:
Serializable
public class LiveStreamSessionReferrer extends Object implements Serializable
LiveStreamSessionReferrer- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static StringSERIALIZED_NAME_MEDIUMstatic StringSERIALIZED_NAME_SEARCH_TERMstatic StringSERIALIZED_NAME_SOURCEstatic StringSERIALIZED_NAME_URL
-
Constructor Summary
Constructors Constructor Description LiveStreamSessionReferrer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)StringgetMedium()The type of search that brought the viewer to the live stream.StringgetSearchTerm()What term they searched for that led them to the live stream.StringgetSource()Where the viewer came from to see the live stream (usually where they searched from).StringgetUrl()The website the viewer of the live stream was referred to in order to view the live stream.inthashCode()LiveStreamSessionReferrermedium(String medium)LiveStreamSessionReferrersearchTerm(String searchTerm)voidsetMedium(String medium)voidsetSearchTerm(String searchTerm)voidsetSource(String source)voidsetUrl(String url)LiveStreamSessionReferrersource(String source)StringtoString()LiveStreamSessionReferrerurl(String url)
-
-
-
Field Detail
-
SERIALIZED_NAME_URL
public static final String SERIALIZED_NAME_URL
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_MEDIUM
public static final String SERIALIZED_NAME_MEDIUM
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_SOURCE
public static final String SERIALIZED_NAME_SOURCE
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_SEARCH_TERM
public static final String SERIALIZED_NAME_SEARCH_TERM
- See Also:
- Constant Field Values
-
-
Method Detail
-
url
public LiveStreamSessionReferrer url(String url)
-
getUrl
@Nullable public String getUrl()
The website the viewer of the live stream was referred to in order to view the live stream.- Returns:
- url
-
setUrl
public void setUrl(String url)
-
medium
public LiveStreamSessionReferrer medium(String medium)
-
getMedium
@Nullable public String getMedium()
The type of search that brought the viewer to the live stream. Organic would be they found it on their own, paid would be they found it via an advertisement.- Returns:
- medium
-
setMedium
public void setMedium(String medium)
-
source
public LiveStreamSessionReferrer source(String source)
-
getSource
@Nullable public String getSource()
Where the viewer came from to see the live stream (usually where they searched from).- Returns:
- source
-
setSource
public void setSource(String source)
-
searchTerm
public LiveStreamSessionReferrer searchTerm(String searchTerm)
-
getSearchTerm
@Nullable public String getSearchTerm()
What term they searched for that led them to the live stream.- Returns:
- searchTerm
-
setSearchTerm
public void setSearchTerm(String searchTerm)
-
-