Package video.api.client.api.models
Class VideoSessionOs
- java.lang.Object
-
- video.api.client.api.models.VideoSessionOs
-
- All Implemented Interfaces:
Serializable
public class VideoSessionOs extends Object implements Serializable
The operating system the viewer is on.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static StringSERIALIZED_NAME_NAMEstatic StringSERIALIZED_NAME_SHORTNAMEstatic StringSERIALIZED_NAME_VERSION
-
Constructor Summary
Constructors Constructor Description VideoSessionOs()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)StringgetName()The name of the operating system.StringgetShortname()The nickname for the operating system, often representing the version.StringgetVersion()The version of the operating system.inthashCode()VideoSessionOsname(String name)voidsetName(String name)voidsetShortname(String shortname)voidsetVersion(String version)VideoSessionOsshortname(String shortname)StringtoString()VideoSessionOsversion(String version)
-
-
-
Field Detail
-
SERIALIZED_NAME_NAME
public static final String SERIALIZED_NAME_NAME
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_SHORTNAME
public static final String SERIALIZED_NAME_SHORTNAME
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_VERSION
public static final String SERIALIZED_NAME_VERSION
- See Also:
- Constant Field Values
-
-
Method Detail
-
name
public VideoSessionOs name(String name)
-
getName
@Nullable public String getName()
The name of the operating system.- Returns:
- name
-
setName
public void setName(String name)
-
shortname
public VideoSessionOs shortname(String shortname)
-
getShortname
@Nullable public String getShortname()
The nickname for the operating system, often representing the version.- Returns:
- shortname
-
setShortname
public void setShortname(String shortname)
-
version
public VideoSessionOs version(String version)
-
getVersion
@Nullable public String getVersion()
The version of the operating system.- Returns:
- version
-
setVersion
public void setVersion(String version)
-
-