Package video.api.client.api.models
Class VideoSessionDevice
java.lang.Object
video.api.client.api.models.VideoSessionDevice
- All Implemented Interfaces:
java.io.Serializable
public class VideoSessionDevice
extends java.lang.Object
implements java.io.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 java.lang.StringSERIALIZED_NAME_MODELstatic java.lang.StringSERIALIZED_NAME_TYPEstatic java.lang.StringSERIALIZED_NAME_VENDOR -
Constructor Summary
Constructors Constructor Description VideoSessionDevice() -
Method Summary
Modifier and Type Method Description booleanequals(java.lang.Object o)java.lang.StringgetModel()The specific model of the device, if known.java.lang.StringgetType()What the type is like desktop, laptop, mobile.java.lang.StringgetVendor()If known, what the brand of the device is, like Apple, Dell, etc.inthashCode()VideoSessionDevicemodel(java.lang.String model)voidsetModel(java.lang.String model)voidsetType(java.lang.String type)voidsetVendor(java.lang.String vendor)java.lang.StringtoString()VideoSessionDevicetype(java.lang.String type)VideoSessionDevicevendor(java.lang.String vendor)Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Field Details
-
SERIALIZED_NAME_TYPE
public static final java.lang.String SERIALIZED_NAME_TYPE- See Also:
- Constant Field Values
-
SERIALIZED_NAME_VENDOR
public static final java.lang.String SERIALIZED_NAME_VENDOR- See Also:
- Constant Field Values
-
SERIALIZED_NAME_MODEL
public static final java.lang.String SERIALIZED_NAME_MODEL- See Also:
- Constant Field Values
-
-
Constructor Details
-
VideoSessionDevice
public VideoSessionDevice()
-
-
Method Details
-
type
-
getType
@Nullable public java.lang.String getType()What the type is like desktop, laptop, mobile.- Returns:
- type
-
setType
public void setType(java.lang.String type) -
vendor
-
getVendor
@Nullable public java.lang.String getVendor()If known, what the brand of the device is, like Apple, Dell, etc.- Returns:
- vendor
-
setVendor
public void setVendor(java.lang.String vendor) -
model
-
getModel
@Nullable public java.lang.String getModel()The specific model of the device, if known.- Returns:
- model
-
setModel
public void setModel(java.lang.String model) -
equals
public boolean equals(java.lang.Object o)- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()- Overrides:
hashCodein classjava.lang.Object
-
toString
public java.lang.String toString()- Overrides:
toStringin classjava.lang.Object
-