Package video.api.client.api.models
Class VideoSessionLocation
- java.lang.Object
-
- video.api.client.api.models.VideoSessionLocation
-
- All Implemented Interfaces:
Serializable
public class VideoSessionLocation extends Object implements Serializable
The location of the viewer.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static StringSERIALIZED_NAME_CITYstatic StringSERIALIZED_NAME_COUNTRY
-
Constructor Summary
Constructors Constructor Description VideoSessionLocation()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description VideoSessionLocationcity(String city)VideoSessionLocationcountry(String country)booleanequals(Object o)StringgetCity()The city of the viewer.StringgetCountry()The country of the viewer.inthashCode()voidsetCity(String city)voidsetCountry(String country)StringtoString()
-
-
-
Field Detail
-
SERIALIZED_NAME_COUNTRY
public static final String SERIALIZED_NAME_COUNTRY
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_CITY
public static final String SERIALIZED_NAME_CITY
- See Also:
- Constant Field Values
-
-
Method Detail
-
country
public VideoSessionLocation country(String country)
-
getCountry
@Nullable public String getCountry()
The country of the viewer.- Returns:
- country
-
setCountry
public void setCountry(String country)
-
city
public VideoSessionLocation city(String city)
-
getCity
@Nullable public String getCity()
The city of the viewer.- Returns:
- city
-
setCity
public void setCity(String city)
-
-