// Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.

package components

type HidVertx struct {
	FirmwareDate *string `json:"firmware_date,omitempty"`
	ID           *string `json:"id,omitempty"`
	IP           *string `json:"ip,omitempty"`
	MacAddress   *string `json:"mac_address,omitempty"`
	MakeModel    *string `json:"make_model,omitempty"`
	Model        *string `json:"model,omitempty"`
	Version      *string `json:"version,omitempty"`
}

func (o *HidVertx) GetFirmwareDate() *string {
	if o == nil {
		return nil
	}
	return o.FirmwareDate
}

func (o *HidVertx) GetID() *string {
	if o == nil {
		return nil
	}
	return o.ID
}

func (o *HidVertx) GetIP() *string {
	if o == nil {
		return nil
	}
	return o.IP
}

func (o *HidVertx) GetMacAddress() *string {
	if o == nil {
		return nil
	}
	return o.MacAddress
}

func (o *HidVertx) GetMakeModel() *string {
	if o == nil {
		return nil
	}
	return o.MakeModel
}

func (o *HidVertx) GetModel() *string {
	if o == nil {
		return nil
	}
	return o.Model
}

func (o *HidVertx) GetVersion() *string {
	if o == nil {
		return nil
	}
	return o.Version
}
