Package video.api.client.api.models
Class VideoSessionDevice
- java.lang.Object
-
- video.api.client.api.models.VideoSessionDevice
-
- All Implemented Interfaces:
Serializable
public class VideoSessionDevice extends Object implements Serializable
What type of device the user is on when in the video session.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static StringSERIALIZED_NAME_MODELstatic StringSERIALIZED_NAME_TYPEstatic StringSERIALIZED_NAME_VENDOR
-
Constructor Summary
Constructors Constructor Description VideoSessionDevice()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)StringgetModel()The specific model of the device, if known.StringgetType()What the type is like desktop, laptop, mobile.StringgetVendor()If known, what the brand of the device is, like Apple, Dell, etc.inthashCode()VideoSessionDevicemodel(String model)voidsetModel(String model)voidsetType(String type)voidsetVendor(String vendor)StringtoString()VideoSessionDevicetype(String type)VideoSessionDevicevendor(String vendor)
-
-
-
Field Detail
-
SERIALIZED_NAME_TYPE
public static final String SERIALIZED_NAME_TYPE
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_VENDOR
public static final String SERIALIZED_NAME_VENDOR
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_MODEL
public static final String SERIALIZED_NAME_MODEL
- See Also:
- Constant Field Values
-
-
Method Detail
-
type
public VideoSessionDevice type(String type)
-
getType
@Nullable public String getType()
What the type is like desktop, laptop, mobile.- Returns:
- type
-
setType
public void setType(String type)
-
vendor
public VideoSessionDevice vendor(String vendor)
-
getVendor
@Nullable public String getVendor()
If known, what the brand of the device is, like Apple, Dell, etc.- Returns:
- vendor
-
setVendor
public void setVendor(String vendor)
-
model
public VideoSessionDevice model(String model)
-
getModel
@Nullable public String getModel()
The specific model of the device, if known.- Returns:
- model
-
setModel
public void setModel(String model)
-
-