Package video.api.client.api.models
Class VideoSessionReferrer
- java.lang.Object
-
- video.api.client.api.models.VideoSessionReferrer
-
- All Implemented Interfaces:
Serializable
public class VideoSessionReferrer extends Object implements Serializable
VideoSessionReferrer- 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 VideoSessionReferrer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)StringgetMedium()How they arrived at the site, for example organic or paid.StringgetSearchTerm()The search term they typed to arrive at the video session.StringgetSource()The source the referrer came from to the video session.StringgetUrl()The link the viewer used to reach the video session.inthashCode()VideoSessionReferrermedium(String medium)VideoSessionReferrersearchTerm(String searchTerm)voidsetMedium(String medium)voidsetSearchTerm(String searchTerm)voidsetSource(String source)voidsetUrl(String url)VideoSessionReferrersource(String source)StringtoString()VideoSessionReferrerurl(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 VideoSessionReferrer url(String url)
-
getUrl
@Nullable public String getUrl()
The link the viewer used to reach the video session.- Returns:
- url
-
setUrl
public void setUrl(String url)
-
medium
public VideoSessionReferrer medium(String medium)
-
getMedium
@Nullable public String getMedium()
How they arrived at the site, for example organic or paid. Organic meaning they found it themselves and paid meaning they followed a link from an advertisement.- Returns:
- medium
-
setMedium
public void setMedium(String medium)
-
source
public VideoSessionReferrer source(String source)
-
getSource
@Nullable public String getSource()
The source the referrer came from to the video session. For example if they searched through google to find the stream.- Returns:
- source
-
setSource
public void setSource(String source)
-
searchTerm
public VideoSessionReferrer searchTerm(String searchTerm)
-
getSearchTerm
@Nullable public String getSearchTerm()
The search term they typed to arrive at the video session.- Returns:
- searchTerm
-
setSearchTerm
public void setSearchTerm(String searchTerm)
-
-