Skip to content

Latest commit

 

History

History
108 lines (59 loc) · 2.95 KB

VideoSessionDevice.md

File metadata and controls

108 lines (59 loc) · 2.95 KB

VideoSessionDevice

Properties

Name Type Description Notes
Type Pointer to string What the type is like desktop, laptop, mobile. [optional]
Vendor Pointer to string If known, what the brand of the device is, like Apple, Dell, etc. [optional]
Model Pointer to string The specific model of the device, if known. [optional]

Methods

NewVideoSessionDevice

func NewVideoSessionDevice() *VideoSessionDevice

NewVideoSessionDevice instantiates a new VideoSessionDevice object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

NewVideoSessionDeviceWithDefaults

func NewVideoSessionDeviceWithDefaults() *VideoSessionDevice

NewVideoSessionDeviceWithDefaults instantiates a new VideoSessionDevice object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

GetType

func (o *VideoSessionDevice) GetType() string

GetType returns the Type field if non-nil, zero value otherwise.

GetTypeOk

func (o *VideoSessionDevice) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetType

func (o *VideoSessionDevice) SetType(v string)

SetType sets Type field to given value.

HasType

func (o *VideoSessionDevice) HasType() bool

HasType returns a boolean if a field has been set.

GetVendor

func (o *VideoSessionDevice) GetVendor() string

GetVendor returns the Vendor field if non-nil, zero value otherwise.

GetVendorOk

func (o *VideoSessionDevice) GetVendorOk() (*string, bool)

GetVendorOk returns a tuple with the Vendor field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetVendor

func (o *VideoSessionDevice) SetVendor(v string)

SetVendor sets Vendor field to given value.

HasVendor

func (o *VideoSessionDevice) HasVendor() bool

HasVendor returns a boolean if a field has been set.

GetModel

func (o *VideoSessionDevice) GetModel() string

GetModel returns the Model field if non-nil, zero value otherwise.

GetModelOk

func (o *VideoSessionDevice) GetModelOk() (*string, bool)

GetModelOk returns a tuple with the Model field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetModel

func (o *VideoSessionDevice) SetModel(v string)

SetModel sets Model field to given value.

HasModel

func (o *VideoSessionDevice) HasModel() bool

HasModel returns a boolean if a field has been set.

[Back to Model list] [Back to API list] [Back to README]