api

package
v0.2024.5 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 5, 2024 License: GPL-3.0 Imports: 5 Imported by: 0

Documentation

Overview

Package api allows interaction with the AirThings API. Some files were generated and copied from openapi-generator. Additional utils and fixes were added manually.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func IsNil

func IsNil(i interface{}) bool

IsNil checks if an input is nil

func PtrBool

func PtrBool(v bool) *bool

PtrBool is a helper routine that returns a pointer to given boolean value.

func PtrFloat32

func PtrFloat32(v float32) *float32

PtrFloat32 is a helper routine that returns a pointer to given float value.

func PtrFloat64

func PtrFloat64(v float64) *float64

PtrFloat64 is a helper routine that returns a pointer to given float value.

func PtrInt

func PtrInt(v int) *int

PtrInt is a helper routine that returns a pointer to given integer value.

func PtrInt32

func PtrInt32(v int32) *int32

PtrInt32 is a helper routine that returns a pointer to given integer value.

func PtrInt64

func PtrInt64(v int64) *int64

PtrInt64 is a helper routine that returns a pointer to given integer value.

func PtrString

func PtrString(v string) *string

PtrString is a helper routine that returns a pointer to given string value.

func PtrTime

func PtrTime(v time.Time) *time.Time

PtrTime is helper routine that returns a pointer to given Time value.

Types

type DeviceSampleResponseEnriched

type DeviceSampleResponseEnriched struct {
	// latest sample data for the device
	Data    SingleSampleDataEnriched `json:"data"`
	Id      string                   `json:"id"`
	Segment SegmentSimpleResponse    `json:"segment"`
}

DeviceSampleResponseEnriched struct for DeviceSampleResponseEnriched

func NewDeviceSampleResponseEnriched

func NewDeviceSampleResponseEnriched(data SingleSampleDataEnriched, id string, segment SegmentSimpleResponse) *DeviceSampleResponseEnriched

NewDeviceSampleResponseEnriched instantiates a new DeviceSampleResponseEnriched 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

func NewDeviceSampleResponseEnrichedWithDefaults

func NewDeviceSampleResponseEnrichedWithDefaults() *DeviceSampleResponseEnriched

NewDeviceSampleResponseEnrichedWithDefaults instantiates a new DeviceSampleResponseEnriched 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

func (*DeviceSampleResponseEnriched) GetData

GetData returns the Data field value

func (*DeviceSampleResponseEnriched) GetDataOk

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (*DeviceSampleResponseEnriched) GetId

GetId returns the Id field value

func (*DeviceSampleResponseEnriched) GetIdOk

func (o *DeviceSampleResponseEnriched) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*DeviceSampleResponseEnriched) GetSegment

GetSegment returns the Segment field value

func (*DeviceSampleResponseEnriched) GetSegmentOk

GetSegmentOk returns a tuple with the Segment field value and a boolean to check if the value has been set.

func (DeviceSampleResponseEnriched) MarshalJSON

func (o DeviceSampleResponseEnriched) MarshalJSON() ([]byte, error)

func (*DeviceSampleResponseEnriched) SetData

SetData sets field value

func (*DeviceSampleResponseEnriched) SetId

SetId sets field value

func (*DeviceSampleResponseEnriched) SetSegment

SetSegment sets field value

func (DeviceSampleResponseEnriched) ToMap

func (o DeviceSampleResponseEnriched) ToMap() (map[string]interface{}, error)

func (*DeviceSampleResponseEnriched) UnmarshalJSON

func (o *DeviceSampleResponseEnriched) UnmarshalJSON(bytes []byte) (err error)

type GetLocationSamplesResponseEnriched

type GetLocationSamplesResponseEnriched struct {
	Devices []DeviceSampleResponseEnriched `json:"devices"`
	Id      string                         `json:"id"`
	Name    string                         `json:"name"`
}

GetLocationSamplesResponseEnriched struct for GetLocationSamplesResponseEnriched

func NewGetLocationSamplesResponseEnriched

func NewGetLocationSamplesResponseEnriched(devices []DeviceSampleResponseEnriched, id string, name string) *GetLocationSamplesResponseEnriched

NewGetLocationSamplesResponseEnriched instantiates a new GetLocationSamplesResponseEnriched 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

func NewGetLocationSamplesResponseEnrichedWithDefaults

func NewGetLocationSamplesResponseEnrichedWithDefaults() *GetLocationSamplesResponseEnriched

NewGetLocationSamplesResponseEnrichedWithDefaults instantiates a new GetLocationSamplesResponseEnriched 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

func (*GetLocationSamplesResponseEnriched) GetDevices

GetDevices returns the Devices field value

func (*GetLocationSamplesResponseEnriched) GetDevicesOk

GetDevicesOk returns a tuple with the Devices field value and a boolean to check if the value has been set.

func (*GetLocationSamplesResponseEnriched) GetId

GetId returns the Id field value

func (*GetLocationSamplesResponseEnriched) GetIdOk

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*GetLocationSamplesResponseEnriched) GetName

GetName returns the Name field value

func (*GetLocationSamplesResponseEnriched) GetNameOk

func (o *GetLocationSamplesResponseEnriched) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (GetLocationSamplesResponseEnriched) MarshalJSON

func (o GetLocationSamplesResponseEnriched) MarshalJSON() ([]byte, error)

func (*GetLocationSamplesResponseEnriched) SetDevices

SetDevices sets field value

func (*GetLocationSamplesResponseEnriched) SetId

SetId sets field value

func (*GetLocationSamplesResponseEnriched) SetName

SetName sets field value

func (GetLocationSamplesResponseEnriched) ToMap

func (o GetLocationSamplesResponseEnriched) ToMap() (map[string]interface{}, error)

func (*GetLocationSamplesResponseEnriched) UnmarshalJSON

func (o *GetLocationSamplesResponseEnriched) UnmarshalJSON(bytes []byte) (err error)

type GetLocationsResponse

type GetLocationsResponse struct {
	Locations []LocationResponse `json:"locations"`
}

GetLocationsResponse struct for GetLocationsResponse

func NewGetLocationsResponse

func NewGetLocationsResponse(locations []LocationResponse) *GetLocationsResponse

NewGetLocationsResponse instantiates a new GetLocationsResponse 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

func NewGetLocationsResponseWithDefaults

func NewGetLocationsResponseWithDefaults() *GetLocationsResponse

NewGetLocationsResponseWithDefaults instantiates a new GetLocationsResponse 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

func (*GetLocationsResponse) GetLocations

func (o *GetLocationsResponse) GetLocations() []LocationResponse

GetLocations returns the Locations field value

func (*GetLocationsResponse) GetLocationsOk

func (o *GetLocationsResponse) GetLocationsOk() ([]LocationResponse, bool)

GetLocationsOk returns a tuple with the Locations field value and a boolean to check if the value has been set.

func (GetLocationsResponse) MarshalJSON

func (o GetLocationsResponse) MarshalJSON() ([]byte, error)

func (*GetLocationsResponse) SetLocations

func (o *GetLocationsResponse) SetLocations(v []LocationResponse)

SetLocations sets field value

func (GetLocationsResponse) ToMap

func (o GetLocationsResponse) ToMap() (map[string]interface{}, error)

func (*GetLocationsResponse) UnmarshalJSON

func (o *GetLocationsResponse) UnmarshalJSON(bytes []byte) (err error)

type LocationResponse

type LocationResponse struct {
	Id     string            `json:"id"`
	Labels map[string]string `json:"labels"`
	Name   string            `json:"name"`
}

LocationResponse struct for LocationResponse

func NewLocationResponse

func NewLocationResponse(id string, labels map[string]string, name string) *LocationResponse

NewLocationResponse instantiates a new LocationResponse 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

func NewLocationResponseWithDefaults

func NewLocationResponseWithDefaults() *LocationResponse

NewLocationResponseWithDefaults instantiates a new LocationResponse 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

func (*LocationResponse) GetId

func (o *LocationResponse) GetId() string

GetId returns the Id field value

func (*LocationResponse) GetIdOk

func (o *LocationResponse) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*LocationResponse) GetLabels

func (o *LocationResponse) GetLabels() map[string]string

GetLabels returns the Labels field value If the value is explicit nil, the zero value for map[string]string will be returned

func (*LocationResponse) GetLabelsOk

func (o *LocationResponse) GetLabelsOk() (*map[string]string, bool)

GetLabelsOk returns a tuple with the Labels field value and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*LocationResponse) GetName

func (o *LocationResponse) GetName() string

GetName returns the Name field value

func (*LocationResponse) GetNameOk

func (o *LocationResponse) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (LocationResponse) MarshalJSON

func (o LocationResponse) MarshalJSON() ([]byte, error)

func (*LocationResponse) SetId

func (o *LocationResponse) SetId(v string)

SetId sets field value

func (*LocationResponse) SetLabels

func (o *LocationResponse) SetLabels(v map[string]string)

SetLabels sets field value

func (*LocationResponse) SetName

func (o *LocationResponse) SetName(v string)

SetName sets field value

func (LocationResponse) ToMap

func (o LocationResponse) ToMap() (map[string]interface{}, error)

func (*LocationResponse) UnmarshalJSON

func (o *LocationResponse) UnmarshalJSON(bytes []byte) (err error)

type MappedNullable

type MappedNullable interface {
	ToMap() (map[string]interface{}, error)
}

type NullableBool

type NullableBool struct {
	// contains filtered or unexported fields
}

func NewNullableBool

func NewNullableBool(val *bool) *NullableBool

func (NullableBool) Get

func (v NullableBool) Get() *bool

func (NullableBool) IsSet

func (v NullableBool) IsSet() bool

func (NullableBool) MarshalJSON

func (v NullableBool) MarshalJSON() ([]byte, error)

func (*NullableBool) Set

func (v *NullableBool) Set(val *bool)

func (*NullableBool) UnmarshalJSON

func (v *NullableBool) UnmarshalJSON(src []byte) error

func (*NullableBool) Unset

func (v *NullableBool) Unset()

type NullableDeviceSampleResponseEnriched

type NullableDeviceSampleResponseEnriched struct {
	// contains filtered or unexported fields
}

func (NullableDeviceSampleResponseEnriched) Get

func (NullableDeviceSampleResponseEnriched) IsSet

func (NullableDeviceSampleResponseEnriched) MarshalJSON

func (v NullableDeviceSampleResponseEnriched) MarshalJSON() ([]byte, error)

func (*NullableDeviceSampleResponseEnriched) Set

func (*NullableDeviceSampleResponseEnriched) UnmarshalJSON

func (v *NullableDeviceSampleResponseEnriched) UnmarshalJSON(src []byte) error

func (*NullableDeviceSampleResponseEnriched) Unset

type NullableFloat32

type NullableFloat32 struct {
	// contains filtered or unexported fields
}

func NewNullableFloat32

func NewNullableFloat32(val *float32) *NullableFloat32

func (NullableFloat32) Get

func (v NullableFloat32) Get() *float32

func (NullableFloat32) IsSet

func (v NullableFloat32) IsSet() bool

func (NullableFloat32) MarshalJSON

func (v NullableFloat32) MarshalJSON() ([]byte, error)

func (*NullableFloat32) Set

func (v *NullableFloat32) Set(val *float32)

func (*NullableFloat32) UnmarshalJSON

func (v *NullableFloat32) UnmarshalJSON(src []byte) error

func (*NullableFloat32) Unset

func (v *NullableFloat32) Unset()

type NullableFloat64

type NullableFloat64 struct {
	// contains filtered or unexported fields
}

func NewNullableFloat64

func NewNullableFloat64(val *float64) *NullableFloat64

func (NullableFloat64) Get

func (v NullableFloat64) Get() *float64

func (NullableFloat64) IsSet

func (v NullableFloat64) IsSet() bool

func (NullableFloat64) MarshalJSON

func (v NullableFloat64) MarshalJSON() ([]byte, error)

func (*NullableFloat64) Set

func (v *NullableFloat64) Set(val *float64)

func (*NullableFloat64) UnmarshalJSON

func (v *NullableFloat64) UnmarshalJSON(src []byte) error

func (*NullableFloat64) Unset

func (v *NullableFloat64) Unset()

type NullableGetLocationSamplesResponseEnriched

type NullableGetLocationSamplesResponseEnriched struct {
	// contains filtered or unexported fields
}

func (NullableGetLocationSamplesResponseEnriched) Get

func (NullableGetLocationSamplesResponseEnriched) IsSet

func (NullableGetLocationSamplesResponseEnriched) MarshalJSON

func (*NullableGetLocationSamplesResponseEnriched) Set

func (*NullableGetLocationSamplesResponseEnriched) UnmarshalJSON

func (v *NullableGetLocationSamplesResponseEnriched) UnmarshalJSON(src []byte) error

func (*NullableGetLocationSamplesResponseEnriched) Unset

type NullableGetLocationsResponse

type NullableGetLocationsResponse struct {
	// contains filtered or unexported fields
}

func NewNullableGetLocationsResponse

func NewNullableGetLocationsResponse(val *GetLocationsResponse) *NullableGetLocationsResponse

func (NullableGetLocationsResponse) Get

func (NullableGetLocationsResponse) IsSet

func (NullableGetLocationsResponse) MarshalJSON

func (v NullableGetLocationsResponse) MarshalJSON() ([]byte, error)

func (*NullableGetLocationsResponse) Set

func (*NullableGetLocationsResponse) UnmarshalJSON

func (v *NullableGetLocationsResponse) UnmarshalJSON(src []byte) error

func (*NullableGetLocationsResponse) Unset

func (v *NullableGetLocationsResponse) Unset()

type NullableInt

type NullableInt struct {
	// contains filtered or unexported fields
}

func NewNullableInt

func NewNullableInt(val *int) *NullableInt

func (NullableInt) Get

func (v NullableInt) Get() *int

func (NullableInt) IsSet

func (v NullableInt) IsSet() bool

func (NullableInt) MarshalJSON

func (v NullableInt) MarshalJSON() ([]byte, error)

func (*NullableInt) Set

func (v *NullableInt) Set(val *int)

func (*NullableInt) UnmarshalJSON

func (v *NullableInt) UnmarshalJSON(src []byte) error

func (*NullableInt) Unset

func (v *NullableInt) Unset()

type NullableInt32

type NullableInt32 struct {
	// contains filtered or unexported fields
}

func NewNullableInt32

func NewNullableInt32(val *int32) *NullableInt32

func (NullableInt32) Get

func (v NullableInt32) Get() *int32

func (NullableInt32) IsSet

func (v NullableInt32) IsSet() bool

func (NullableInt32) MarshalJSON

func (v NullableInt32) MarshalJSON() ([]byte, error)

func (*NullableInt32) Set

func (v *NullableInt32) Set(val *int32)

func (*NullableInt32) UnmarshalJSON

func (v *NullableInt32) UnmarshalJSON(src []byte) error

func (*NullableInt32) Unset

func (v *NullableInt32) Unset()

type NullableInt64

type NullableInt64 struct {
	// contains filtered or unexported fields
}

func NewNullableInt64

func NewNullableInt64(val *int64) *NullableInt64

func (NullableInt64) Get

func (v NullableInt64) Get() *int64

func (NullableInt64) IsSet

func (v NullableInt64) IsSet() bool

func (NullableInt64) MarshalJSON

func (v NullableInt64) MarshalJSON() ([]byte, error)

func (*NullableInt64) Set

func (v *NullableInt64) Set(val *int64)

func (*NullableInt64) UnmarshalJSON

func (v *NullableInt64) UnmarshalJSON(src []byte) error

func (*NullableInt64) Unset

func (v *NullableInt64) Unset()

type NullableLocationResponse

type NullableLocationResponse struct {
	// contains filtered or unexported fields
}

func NewNullableLocationResponse

func NewNullableLocationResponse(val *LocationResponse) *NullableLocationResponse

func (NullableLocationResponse) Get

func (NullableLocationResponse) IsSet

func (v NullableLocationResponse) IsSet() bool

func (NullableLocationResponse) MarshalJSON

func (v NullableLocationResponse) MarshalJSON() ([]byte, error)

func (*NullableLocationResponse) Set

func (*NullableLocationResponse) UnmarshalJSON

func (v *NullableLocationResponse) UnmarshalJSON(src []byte) error

func (*NullableLocationResponse) Unset

func (v *NullableLocationResponse) Unset()

type NullableSegmentSimpleResponse

type NullableSegmentSimpleResponse struct {
	// contains filtered or unexported fields
}

func (NullableSegmentSimpleResponse) Get

func (NullableSegmentSimpleResponse) IsSet

func (NullableSegmentSimpleResponse) MarshalJSON

func (v NullableSegmentSimpleResponse) MarshalJSON() ([]byte, error)

func (*NullableSegmentSimpleResponse) Set

func (*NullableSegmentSimpleResponse) UnmarshalJSON

func (v *NullableSegmentSimpleResponse) UnmarshalJSON(src []byte) error

func (*NullableSegmentSimpleResponse) Unset

func (v *NullableSegmentSimpleResponse) Unset()

type NullableSingleSampleDataEnriched

type NullableSingleSampleDataEnriched struct {
	// contains filtered or unexported fields
}

func (NullableSingleSampleDataEnriched) Get

func (NullableSingleSampleDataEnriched) IsSet

func (NullableSingleSampleDataEnriched) MarshalJSON

func (v NullableSingleSampleDataEnriched) MarshalJSON() ([]byte, error)

func (*NullableSingleSampleDataEnriched) Set

func (*NullableSingleSampleDataEnriched) UnmarshalJSON

func (v *NullableSingleSampleDataEnriched) UnmarshalJSON(src []byte) error

func (*NullableSingleSampleDataEnriched) Unset

type NullableSingleSampleDataEnrichedControlSignal

type NullableSingleSampleDataEnrichedControlSignal struct {
	// contains filtered or unexported fields
}

func (NullableSingleSampleDataEnrichedControlSignal) Get

func (NullableSingleSampleDataEnrichedControlSignal) IsSet

func (NullableSingleSampleDataEnrichedControlSignal) MarshalJSON

func (*NullableSingleSampleDataEnrichedControlSignal) Set

func (*NullableSingleSampleDataEnrichedControlSignal) UnmarshalJSON

func (*NullableSingleSampleDataEnrichedControlSignal) Unset

type NullableSingleSampleDataEnrichedLight

type NullableSingleSampleDataEnrichedLight struct {
	// contains filtered or unexported fields
}

func (NullableSingleSampleDataEnrichedLight) Get

func (NullableSingleSampleDataEnrichedLight) IsSet

func (NullableSingleSampleDataEnrichedLight) MarshalJSON

func (v NullableSingleSampleDataEnrichedLight) MarshalJSON() ([]byte, error)

func (*NullableSingleSampleDataEnrichedLight) Set

func (*NullableSingleSampleDataEnrichedLight) UnmarshalJSON

func (v *NullableSingleSampleDataEnrichedLight) UnmarshalJSON(src []byte) error

func (*NullableSingleSampleDataEnrichedLight) Unset

type NullableString

type NullableString struct {
	// contains filtered or unexported fields
}

func NewNullableString

func NewNullableString(val *string) *NullableString

func (NullableString) Get

func (v NullableString) Get() *string

func (NullableString) IsSet

func (v NullableString) IsSet() bool

func (NullableString) MarshalJSON

func (v NullableString) MarshalJSON() ([]byte, error)

func (*NullableString) Set

func (v *NullableString) Set(val *string)

func (*NullableString) UnmarshalJSON

func (v *NullableString) UnmarshalJSON(src []byte) error

func (*NullableString) Unset

func (v *NullableString) Unset()

type NullableTime

type NullableTime struct {
	// contains filtered or unexported fields
}

func NewNullableTime

func NewNullableTime(val *time.Time) *NullableTime

func (NullableTime) Get

func (v NullableTime) Get() *time.Time

func (NullableTime) IsSet

func (v NullableTime) IsSet() bool

func (NullableTime) MarshalJSON

func (v NullableTime) MarshalJSON() ([]byte, error)

func (*NullableTime) Set

func (v *NullableTime) Set(val *time.Time)

func (*NullableTime) UnmarshalJSON

func (v *NullableTime) UnmarshalJSON(src []byte) error

func (*NullableTime) Unset

func (v *NullableTime) Unset()

type SegmentSimpleResponse

type SegmentSimpleResponse struct {
	Active  bool   `json:"active"`
	Id      string `json:"id"`
	Name    string `json:"name"`
	Started Time   `json:"started"`
}

SegmentSimpleResponse struct for SegmentSimpleResponse

func NewSegmentSimpleResponse

func NewSegmentSimpleResponse(active bool, id string, name string, started time.Time) *SegmentSimpleResponse

NewSegmentSimpleResponse instantiates a new SegmentSimpleResponse 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

func NewSegmentSimpleResponseWithDefaults

func NewSegmentSimpleResponseWithDefaults() *SegmentSimpleResponse

NewSegmentSimpleResponseWithDefaults instantiates a new SegmentSimpleResponse 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

func (*SegmentSimpleResponse) GetActive

func (o *SegmentSimpleResponse) GetActive() bool

GetActive returns the Active field value

func (*SegmentSimpleResponse) GetActiveOk

func (o *SegmentSimpleResponse) GetActiveOk() (*bool, bool)

GetActiveOk returns a tuple with the Active field value and a boolean to check if the value has been set.

func (*SegmentSimpleResponse) GetId

func (o *SegmentSimpleResponse) GetId() string

GetId returns the Id field value

func (*SegmentSimpleResponse) GetIdOk

func (o *SegmentSimpleResponse) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*SegmentSimpleResponse) GetName

func (o *SegmentSimpleResponse) GetName() string

GetName returns the Name field value

func (*SegmentSimpleResponse) GetNameOk

func (o *SegmentSimpleResponse) GetNameOk() (*string, bool)

GetNameOk returns a tuple with the Name field value and a boolean to check if the value has been set.

func (*SegmentSimpleResponse) GetStarted

func (o *SegmentSimpleResponse) GetStarted() time.Time

GetStarted returns the Started field value

func (*SegmentSimpleResponse) GetStartedOk

func (o *SegmentSimpleResponse) GetStartedOk() (*time.Time, bool)

GetStartedOk returns a tuple with the Started field value and a boolean to check if the value has been set.

func (SegmentSimpleResponse) MarshalJSON

func (o SegmentSimpleResponse) MarshalJSON() ([]byte, error)

func (*SegmentSimpleResponse) SetActive

func (o *SegmentSimpleResponse) SetActive(v bool)

SetActive sets field value

func (*SegmentSimpleResponse) SetId

func (o *SegmentSimpleResponse) SetId(v string)

SetId sets field value

func (*SegmentSimpleResponse) SetName

func (o *SegmentSimpleResponse) SetName(v string)

SetName sets field value

func (*SegmentSimpleResponse) SetStarted

func (o *SegmentSimpleResponse) SetStarted(v time.Time)

SetStarted sets field value

func (SegmentSimpleResponse) ToMap

func (o SegmentSimpleResponse) ToMap() (map[string]interface{}, error)

func (*SegmentSimpleResponse) UnmarshalJSON

func (o *SegmentSimpleResponse) UnmarshalJSON(bytes []byte) (err error)

type SingleSampleDataEnriched

type SingleSampleDataEnriched struct {
	AirExchangeRate     NullableFloat64                               `json:"airExchangeRate,omitempty"`
	Airflow             NullableFloat64                               `json:"airflow,omitempty"`
	Battery             NullableFloat32                               `json:"battery,omitempty"`
	Co2                 NullableFloat64                               `json:"co2,omitempty"`
	ControlSignal       NullableSingleSampleDataEnrichedControlSignal `json:"controlSignal,omitempty"`
	ControlSignalSlot01 NullableSingleSampleDataEnrichedControlSignal `json:"controlSignalSlot01,omitempty"`
	ControlSignalSlot02 NullableSingleSampleDataEnrichedControlSignal `json:"controlSignalSlot02,omitempty"`
	ControlSignalSlot03 NullableSingleSampleDataEnrichedControlSignal `json:"controlSignalSlot03,omitempty"`
	ControlSignalSlot04 NullableSingleSampleDataEnrichedControlSignal `json:"controlSignalSlot04,omitempty"`
	ControlSignalSlot05 NullableSingleSampleDataEnrichedControlSignal `json:"controlSignalSlot05,omitempty"`
	ControlSignalSlot06 NullableSingleSampleDataEnrichedControlSignal `json:"controlSignalSlot06,omitempty"`
	ControlSignalSlot07 NullableSingleSampleDataEnrichedControlSignal `json:"controlSignalSlot07,omitempty"`
	ControlSignalSlot08 NullableSingleSampleDataEnrichedControlSignal `json:"controlSignalSlot08,omitempty"`
	Humidity            NullableSingleSampleDataEnrichedControlSignal `json:"humidity,omitempty"`
	Light               NullableSingleSampleDataEnrichedLight         `json:"light,omitempty"`
	Lux                 NullableFloat32                               `json:"lux,omitempty"`
	Mold                NullableSingleSampleDataEnrichedControlSignal `json:"mold,omitempty"`
	Occupants           NullableSingleSampleDataEnrichedLight         `json:"occupants,omitempty"`
	OccupantsLower      NullableSingleSampleDataEnrichedLight         `json:"occupantsLower,omitempty"`
	OccupantsUpper      NullableSingleSampleDataEnrichedLight         `json:"occupantsUpper,omitempty"`
	OutdoorCo           NullableSingleSampleDataEnrichedControlSignal `json:"outdoorCo,omitempty"`
	OutdoorHumidity     NullableSingleSampleDataEnrichedControlSignal `json:"outdoorHumidity,omitempty"`
	OutdoorNo           NullableSingleSampleDataEnrichedControlSignal `json:"outdoorNo,omitempty"`
	OutdoorNo2          NullableSingleSampleDataEnrichedControlSignal `json:"outdoorNo2,omitempty"`
	OutdoorO3           NullableSingleSampleDataEnrichedControlSignal `json:"outdoorO3,omitempty"`
	OutdoorPm1          NullableSingleSampleDataEnrichedControlSignal `json:"outdoorPm1,omitempty"`
	OutdoorPm10         NullableSingleSampleDataEnrichedControlSignal `json:"outdoorPm10,omitempty"`
	OutdoorPm25         NullableSingleSampleDataEnrichedControlSignal `json:"outdoorPm25,omitempty"`
	OutdoorPressure     NullableSingleSampleDataEnrichedControlSignal `json:"outdoorPressure,omitempty"`
	OutdoorSo2          NullableSingleSampleDataEnrichedControlSignal `json:"outdoorSo2,omitempty"`
	OutdoorTemp         NullableSingleSampleDataEnrichedControlSignal `json:"outdoorTemp,omitempty"`
	Pm1                 NullableSingleSampleDataEnrichedControlSignal `json:"pm1,omitempty"`
	Pm10                NullableSingleSampleDataEnrichedControlSignal `json:"pm10,omitempty"`
	Pm25                NullableSingleSampleDataEnrichedControlSignal `json:"pm25,omitempty"`
	Pressure            NullableSingleSampleDataEnrichedControlSignal `json:"pressure,omitempty"`
	PressureDifference  NullableSingleSampleDataEnrichedControlSignal `json:"pressureDifference,omitempty"`
	RadonShortTermAvg   NullableSingleSampleDataEnrichedControlSignal `json:"radonShortTermAvg,omitempty"`
	RegulationHeight    NullableSingleSampleDataEnrichedControlSignal `json:"regulationHeight,omitempty"`
	RegulationPressure  NullableSingleSampleDataEnrichedControlSignal `json:"regulationPressure,omitempty"`
	RelayDeviceType     NullableString                                `json:"relayDeviceType,omitempty"`
	Rssi                NullableSingleSampleDataEnrichedLight         `json:"rssi,omitempty"`
	Sla                 NullableSingleSampleDataEnrichedControlSignal `json:"sla,omitempty"`
	Temp                NullableSingleSampleDataEnrichedControlSignal `json:"temp,omitempty"`
	Time                NullableSingleSampleDataEnrichedLight         `json:"time,omitempty"`
	VirusRisk           NullableSingleSampleDataEnrichedControlSignal `json:"virusRisk,omitempty"`
	Voc                 NullableSingleSampleDataEnrichedControlSignal `json:"voc,omitempty"`
}

SingleSampleDataEnriched struct for SingleSampleDataEnriched

func NewSingleSampleDataEnriched

func NewSingleSampleDataEnriched() *SingleSampleDataEnriched

NewSingleSampleDataEnriched instantiates a new SingleSampleDataEnriched 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

func NewSingleSampleDataEnrichedWithDefaults

func NewSingleSampleDataEnrichedWithDefaults() *SingleSampleDataEnriched

NewSingleSampleDataEnrichedWithDefaults instantiates a new SingleSampleDataEnriched 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

func (*SingleSampleDataEnriched) GetAirExchangeRate

func (o *SingleSampleDataEnriched) GetAirExchangeRate() float64

GetAirExchangeRate returns the AirExchangeRate field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SingleSampleDataEnriched) GetAirExchangeRateOk

func (o *SingleSampleDataEnriched) GetAirExchangeRateOk() (*float64, bool)

GetAirExchangeRateOk returns a tuple with the AirExchangeRate field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SingleSampleDataEnriched) GetAirflow

func (o *SingleSampleDataEnriched) GetAirflow() float64

GetAirflow returns the Airflow field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SingleSampleDataEnriched) GetAirflowOk

func (o *SingleSampleDataEnriched) GetAirflowOk() (*float64, bool)

GetAirflowOk returns a tuple with the Airflow field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SingleSampleDataEnriched) GetBattery

func (o *SingleSampleDataEnriched) GetBattery() float32

GetBattery returns the Battery field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SingleSampleDataEnriched) GetBatteryOk

func (o *SingleSampleDataEnriched) GetBatteryOk() (*float32, bool)

GetBatteryOk returns a tuple with the Battery field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SingleSampleDataEnriched) GetCo2

func (o *SingleSampleDataEnriched) GetCo2() float64

GetCo2 returns the Co2 field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SingleSampleDataEnriched) GetCo2Ok

func (o *SingleSampleDataEnriched) GetCo2Ok() (*float64, bool)

GetCo2Ok returns a tuple with the Co2 field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SingleSampleDataEnriched) GetControlSignal

GetControlSignal returns the ControlSignal field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SingleSampleDataEnriched) GetControlSignalOk

GetControlSignalOk returns a tuple with the ControlSignal field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SingleSampleDataEnriched) GetControlSignalSlot01

GetControlSignalSlot01 returns the ControlSignalSlot01 field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SingleSampleDataEnriched) GetControlSignalSlot01Ok

func (o *SingleSampleDataEnriched) GetControlSignalSlot01Ok() (*SingleSampleDataEnrichedControlSignal, bool)

GetControlSignalSlot01Ok returns a tuple with the ControlSignalSlot01 field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SingleSampleDataEnriched) GetControlSignalSlot02

GetControlSignalSlot02 returns the ControlSignalSlot02 field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SingleSampleDataEnriched) GetControlSignalSlot02Ok

func (o *SingleSampleDataEnriched) GetControlSignalSlot02Ok() (*SingleSampleDataEnrichedControlSignal, bool)

GetControlSignalSlot02Ok returns a tuple with the ControlSignalSlot02 field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SingleSampleDataEnriched) GetControlSignalSlot03

GetControlSignalSlot03 returns the ControlSignalSlot03 field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SingleSampleDataEnriched) GetControlSignalSlot03Ok

func (o *SingleSampleDataEnriched) GetControlSignalSlot03Ok() (*SingleSampleDataEnrichedControlSignal, bool)

GetControlSignalSlot03Ok returns a tuple with the ControlSignalSlot03 field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SingleSampleDataEnriched) GetControlSignalSlot04

GetControlSignalSlot04 returns the ControlSignalSlot04 field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SingleSampleDataEnriched) GetControlSignalSlot04Ok

func (o *SingleSampleDataEnriched) GetControlSignalSlot04Ok() (*SingleSampleDataEnrichedControlSignal, bool)

GetControlSignalSlot04Ok returns a tuple with the ControlSignalSlot04 field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SingleSampleDataEnriched) GetControlSignalSlot05

GetControlSignalSlot05 returns the ControlSignalSlot05 field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SingleSampleDataEnriched) GetControlSignalSlot05Ok

func (o *SingleSampleDataEnriched) GetControlSignalSlot05Ok() (*SingleSampleDataEnrichedControlSignal, bool)

GetControlSignalSlot05Ok returns a tuple with the ControlSignalSlot05 field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SingleSampleDataEnriched) GetControlSignalSlot06

GetControlSignalSlot06 returns the ControlSignalSlot06 field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SingleSampleDataEnriched) GetControlSignalSlot06Ok

func (o *SingleSampleDataEnriched) GetControlSignalSlot06Ok() (*SingleSampleDataEnrichedControlSignal, bool)

GetControlSignalSlot06Ok returns a tuple with the ControlSignalSlot06 field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SingleSampleDataEnriched) GetControlSignalSlot07

GetControlSignalSlot07 returns the ControlSignalSlot07 field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SingleSampleDataEnriched) GetControlSignalSlot07Ok

func (o *SingleSampleDataEnriched) GetControlSignalSlot07Ok() (*SingleSampleDataEnrichedControlSignal, bool)

GetControlSignalSlot07Ok returns a tuple with the ControlSignalSlot07 field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SingleSampleDataEnriched) GetControlSignalSlot08

GetControlSignalSlot08 returns the ControlSignalSlot08 field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SingleSampleDataEnriched) GetControlSignalSlot08Ok

func (o *SingleSampleDataEnriched) GetControlSignalSlot08Ok() (*SingleSampleDataEnrichedControlSignal, bool)

GetControlSignalSlot08Ok returns a tuple with the ControlSignalSlot08 field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SingleSampleDataEnriched) GetHumidity

GetHumidity returns the Humidity field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SingleSampleDataEnriched) GetHumidityOk

GetHumidityOk returns a tuple with the Humidity field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SingleSampleDataEnriched) GetLight

GetLight returns the Light field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SingleSampleDataEnriched) GetLightOk

GetLightOk returns a tuple with the Light field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SingleSampleDataEnriched) GetLux

func (o *SingleSampleDataEnriched) GetLux() float32

GetLux returns the Lux field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SingleSampleDataEnriched) GetLuxOk

func (o *SingleSampleDataEnriched) GetLuxOk() (*float32, bool)

GetLuxOk returns a tuple with the Lux field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SingleSampleDataEnriched) GetMold

GetMold returns the Mold field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SingleSampleDataEnriched) GetMoldOk

GetMoldOk returns a tuple with the Mold field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SingleSampleDataEnriched) GetOccupants

GetOccupants returns the Occupants field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SingleSampleDataEnriched) GetOccupantsLower

GetOccupantsLower returns the OccupantsLower field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SingleSampleDataEnriched) GetOccupantsLowerOk

func (o *SingleSampleDataEnriched) GetOccupantsLowerOk() (*SingleSampleDataEnrichedLight, bool)

GetOccupantsLowerOk returns a tuple with the OccupantsLower field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SingleSampleDataEnriched) GetOccupantsOk

GetOccupantsOk returns a tuple with the Occupants field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SingleSampleDataEnriched) GetOccupantsUpper

GetOccupantsUpper returns the OccupantsUpper field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SingleSampleDataEnriched) GetOccupantsUpperOk

func (o *SingleSampleDataEnriched) GetOccupantsUpperOk() (*SingleSampleDataEnrichedLight, bool)

GetOccupantsUpperOk returns a tuple with the OccupantsUpper field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SingleSampleDataEnriched) GetOutdoorCo

GetOutdoorCo returns the OutdoorCo field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SingleSampleDataEnriched) GetOutdoorCoOk

GetOutdoorCoOk returns a tuple with the OutdoorCo field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SingleSampleDataEnriched) GetOutdoorHumidity

GetOutdoorHumidity returns the OutdoorHumidity field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SingleSampleDataEnriched) GetOutdoorHumidityOk

GetOutdoorHumidityOk returns a tuple with the OutdoorHumidity field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SingleSampleDataEnriched) GetOutdoorNo

GetOutdoorNo returns the OutdoorNo field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SingleSampleDataEnriched) GetOutdoorNo2

GetOutdoorNo2 returns the OutdoorNo2 field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SingleSampleDataEnriched) GetOutdoorNo2Ok

GetOutdoorNo2Ok returns a tuple with the OutdoorNo2 field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SingleSampleDataEnriched) GetOutdoorNoOk

GetOutdoorNoOk returns a tuple with the OutdoorNo field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SingleSampleDataEnriched) GetOutdoorO3

GetOutdoorO3 returns the OutdoorO3 field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SingleSampleDataEnriched) GetOutdoorO3Ok

GetOutdoorO3Ok returns a tuple with the OutdoorO3 field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SingleSampleDataEnriched) GetOutdoorPm1

GetOutdoorPm1 returns the OutdoorPm1 field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SingleSampleDataEnriched) GetOutdoorPm10

GetOutdoorPm10 returns the OutdoorPm10 field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SingleSampleDataEnriched) GetOutdoorPm10Ok

GetOutdoorPm10Ok returns a tuple with the OutdoorPm10 field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SingleSampleDataEnriched) GetOutdoorPm1Ok

GetOutdoorPm1Ok returns a tuple with the OutdoorPm1 field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SingleSampleDataEnriched) GetOutdoorPm25

GetOutdoorPm25 returns the OutdoorPm25 field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SingleSampleDataEnriched) GetOutdoorPm25Ok

GetOutdoorPm25Ok returns a tuple with the OutdoorPm25 field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SingleSampleDataEnriched) GetOutdoorPressure

GetOutdoorPressure returns the OutdoorPressure field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SingleSampleDataEnriched) GetOutdoorPressureOk

GetOutdoorPressureOk returns a tuple with the OutdoorPressure field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SingleSampleDataEnriched) GetOutdoorSo2

GetOutdoorSo2 returns the OutdoorSo2 field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SingleSampleDataEnriched) GetOutdoorSo2Ok

GetOutdoorSo2Ok returns a tuple with the OutdoorSo2 field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SingleSampleDataEnriched) GetOutdoorTemp

GetOutdoorTemp returns the OutdoorTemp field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SingleSampleDataEnriched) GetOutdoorTempOk

GetOutdoorTempOk returns a tuple with the OutdoorTemp field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SingleSampleDataEnriched) GetPm1

GetPm1 returns the Pm1 field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SingleSampleDataEnriched) GetPm10

GetPm10 returns the Pm10 field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SingleSampleDataEnriched) GetPm10Ok

GetPm10Ok returns a tuple with the Pm10 field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SingleSampleDataEnriched) GetPm1Ok

GetPm1Ok returns a tuple with the Pm1 field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SingleSampleDataEnriched) GetPm25

GetPm25 returns the Pm25 field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SingleSampleDataEnriched) GetPm25Ok

GetPm25Ok returns a tuple with the Pm25 field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SingleSampleDataEnriched) GetPressure

GetPressure returns the Pressure field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SingleSampleDataEnriched) GetPressureDifference

GetPressureDifference returns the PressureDifference field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SingleSampleDataEnriched) GetPressureDifferenceOk

func (o *SingleSampleDataEnriched) GetPressureDifferenceOk() (*SingleSampleDataEnrichedControlSignal, bool)

GetPressureDifferenceOk returns a tuple with the PressureDifference field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SingleSampleDataEnriched) GetPressureOk

GetPressureOk returns a tuple with the Pressure field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SingleSampleDataEnriched) GetRadonShortTermAvg

GetRadonShortTermAvg returns the RadonShortTermAvg field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SingleSampleDataEnriched) GetRadonShortTermAvgOk

GetRadonShortTermAvgOk returns a tuple with the RadonShortTermAvg field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SingleSampleDataEnriched) GetRegulationHeight

GetRegulationHeight returns the RegulationHeight field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SingleSampleDataEnriched) GetRegulationHeightOk

GetRegulationHeightOk returns a tuple with the RegulationHeight field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SingleSampleDataEnriched) GetRegulationPressure

GetRegulationPressure returns the RegulationPressure field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SingleSampleDataEnriched) GetRegulationPressureOk

func (o *SingleSampleDataEnriched) GetRegulationPressureOk() (*SingleSampleDataEnrichedControlSignal, bool)

GetRegulationPressureOk returns a tuple with the RegulationPressure field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SingleSampleDataEnriched) GetRelayDeviceType

func (o *SingleSampleDataEnriched) GetRelayDeviceType() string

GetRelayDeviceType returns the RelayDeviceType field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SingleSampleDataEnriched) GetRelayDeviceTypeOk

func (o *SingleSampleDataEnriched) GetRelayDeviceTypeOk() (*string, bool)

GetRelayDeviceTypeOk returns a tuple with the RelayDeviceType field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SingleSampleDataEnriched) GetRssi

GetRssi returns the Rssi field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SingleSampleDataEnriched) GetRssiOk

GetRssiOk returns a tuple with the Rssi field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SingleSampleDataEnriched) GetSla

GetSla returns the Sla field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SingleSampleDataEnriched) GetSlaOk

GetSlaOk returns a tuple with the Sla field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SingleSampleDataEnriched) GetTemp

GetTemp returns the Temp field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SingleSampleDataEnriched) GetTempOk

GetTempOk returns a tuple with the Temp field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SingleSampleDataEnriched) GetTime

GetTime returns the Time field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SingleSampleDataEnriched) GetTimeOk

GetTimeOk returns a tuple with the Time field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SingleSampleDataEnriched) GetVirusRisk

GetVirusRisk returns the VirusRisk field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SingleSampleDataEnriched) GetVirusRiskOk

GetVirusRiskOk returns a tuple with the VirusRisk field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SingleSampleDataEnriched) GetVoc

GetVoc returns the Voc field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SingleSampleDataEnriched) GetVocOk

GetVocOk returns a tuple with the Voc field value if set, nil otherwise and a boolean to check if the value has been set. NOTE: If the value is an explicit nil, `nil, true` will be returned

func (*SingleSampleDataEnriched) HasAirExchangeRate

func (o *SingleSampleDataEnriched) HasAirExchangeRate() bool

HasAirExchangeRate returns a boolean if a field has been set.

func (*SingleSampleDataEnriched) HasAirflow

func (o *SingleSampleDataEnriched) HasAirflow() bool

HasAirflow returns a boolean if a field has been set.

func (*SingleSampleDataEnriched) HasBattery

func (o *SingleSampleDataEnriched) HasBattery() bool

HasBattery returns a boolean if a field has been set.

func (*SingleSampleDataEnriched) HasCo2

func (o *SingleSampleDataEnriched) HasCo2() bool

HasCo2 returns a boolean if a field has been set.

func (*SingleSampleDataEnriched) HasControlSignal

func (o *SingleSampleDataEnriched) HasControlSignal() bool

HasControlSignal returns a boolean if a field has been set.

func (*SingleSampleDataEnriched) HasControlSignalSlot01

func (o *SingleSampleDataEnriched) HasControlSignalSlot01() bool

HasControlSignalSlot01 returns a boolean if a field has been set.

func (*SingleSampleDataEnriched) HasControlSignalSlot02

func (o *SingleSampleDataEnriched) HasControlSignalSlot02() bool

HasControlSignalSlot02 returns a boolean if a field has been set.

func (*SingleSampleDataEnriched) HasControlSignalSlot03

func (o *SingleSampleDataEnriched) HasControlSignalSlot03() bool

HasControlSignalSlot03 returns a boolean if a field has been set.

func (*SingleSampleDataEnriched) HasControlSignalSlot04

func (o *SingleSampleDataEnriched) HasControlSignalSlot04() bool

HasControlSignalSlot04 returns a boolean if a field has been set.

func (*SingleSampleDataEnriched) HasControlSignalSlot05

func (o *SingleSampleDataEnriched) HasControlSignalSlot05() bool

HasControlSignalSlot05 returns a boolean if a field has been set.

func (*SingleSampleDataEnriched) HasControlSignalSlot06

func (o *SingleSampleDataEnriched) HasControlSignalSlot06() bool

HasControlSignalSlot06 returns a boolean if a field has been set.

func (*SingleSampleDataEnriched) HasControlSignalSlot07

func (o *SingleSampleDataEnriched) HasControlSignalSlot07() bool

HasControlSignalSlot07 returns a boolean if a field has been set.

func (*SingleSampleDataEnriched) HasControlSignalSlot08

func (o *SingleSampleDataEnriched) HasControlSignalSlot08() bool

HasControlSignalSlot08 returns a boolean if a field has been set.

func (*SingleSampleDataEnriched) HasHumidity

func (o *SingleSampleDataEnriched) HasHumidity() bool

HasHumidity returns a boolean if a field has been set.

func (*SingleSampleDataEnriched) HasLight

func (o *SingleSampleDataEnriched) HasLight() bool

HasLight returns a boolean if a field has been set.

func (*SingleSampleDataEnriched) HasLux

func (o *SingleSampleDataEnriched) HasLux() bool

HasLux returns a boolean if a field has been set.

func (*SingleSampleDataEnriched) HasMold

func (o *SingleSampleDataEnriched) HasMold() bool

HasMold returns a boolean if a field has been set.

func (*SingleSampleDataEnriched) HasOccupants

func (o *SingleSampleDataEnriched) HasOccupants() bool

HasOccupants returns a boolean if a field has been set.

func (*SingleSampleDataEnriched) HasOccupantsLower

func (o *SingleSampleDataEnriched) HasOccupantsLower() bool

HasOccupantsLower returns a boolean if a field has been set.

func (*SingleSampleDataEnriched) HasOccupantsUpper

func (o *SingleSampleDataEnriched) HasOccupantsUpper() bool

HasOccupantsUpper returns a boolean if a field has been set.

func (*SingleSampleDataEnriched) HasOutdoorCo

func (o *SingleSampleDataEnriched) HasOutdoorCo() bool

HasOutdoorCo returns a boolean if a field has been set.

func (*SingleSampleDataEnriched) HasOutdoorHumidity

func (o *SingleSampleDataEnriched) HasOutdoorHumidity() bool

HasOutdoorHumidity returns a boolean if a field has been set.

func (*SingleSampleDataEnriched) HasOutdoorNo

func (o *SingleSampleDataEnriched) HasOutdoorNo() bool

HasOutdoorNo returns a boolean if a field has been set.

func (*SingleSampleDataEnriched) HasOutdoorNo2

func (o *SingleSampleDataEnriched) HasOutdoorNo2() bool

HasOutdoorNo2 returns a boolean if a field has been set.

func (*SingleSampleDataEnriched) HasOutdoorO3

func (o *SingleSampleDataEnriched) HasOutdoorO3() bool

HasOutdoorO3 returns a boolean if a field has been set.

func (*SingleSampleDataEnriched) HasOutdoorPm1

func (o *SingleSampleDataEnriched) HasOutdoorPm1() bool

HasOutdoorPm1 returns a boolean if a field has been set.

func (*SingleSampleDataEnriched) HasOutdoorPm10

func (o *SingleSampleDataEnriched) HasOutdoorPm10() bool

HasOutdoorPm10 returns a boolean if a field has been set.

func (*SingleSampleDataEnriched) HasOutdoorPm25

func (o *SingleSampleDataEnriched) HasOutdoorPm25() bool

HasOutdoorPm25 returns a boolean if a field has been set.

func (*SingleSampleDataEnriched) HasOutdoorPressure

func (o *SingleSampleDataEnriched) HasOutdoorPressure() bool

HasOutdoorPressure returns a boolean if a field has been set.

func (*SingleSampleDataEnriched) HasOutdoorSo2

func (o *SingleSampleDataEnriched) HasOutdoorSo2() bool

HasOutdoorSo2 returns a boolean if a field has been set.

func (*SingleSampleDataEnriched) HasOutdoorTemp

func (o *SingleSampleDataEnriched) HasOutdoorTemp() bool

HasOutdoorTemp returns a boolean if a field has been set.

func (*SingleSampleDataEnriched) HasPm1

func (o *SingleSampleDataEnriched) HasPm1() bool

HasPm1 returns a boolean if a field has been set.

func (*SingleSampleDataEnriched) HasPm10

func (o *SingleSampleDataEnriched) HasPm10() bool

HasPm10 returns a boolean if a field has been set.

func (*SingleSampleDataEnriched) HasPm25

func (o *SingleSampleDataEnriched) HasPm25() bool

HasPm25 returns a boolean if a field has been set.

func (*SingleSampleDataEnriched) HasPressure

func (o *SingleSampleDataEnriched) HasPressure() bool

HasPressure returns a boolean if a field has been set.

func (*SingleSampleDataEnriched) HasPressureDifference

func (o *SingleSampleDataEnriched) HasPressureDifference() bool

HasPressureDifference returns a boolean if a field has been set.

func (*SingleSampleDataEnriched) HasRadonShortTermAvg

func (o *SingleSampleDataEnriched) HasRadonShortTermAvg() bool

HasRadonShortTermAvg returns a boolean if a field has been set.

func (*SingleSampleDataEnriched) HasRegulationHeight

func (o *SingleSampleDataEnriched) HasRegulationHeight() bool

HasRegulationHeight returns a boolean if a field has been set.

func (*SingleSampleDataEnriched) HasRegulationPressure

func (o *SingleSampleDataEnriched) HasRegulationPressure() bool

HasRegulationPressure returns a boolean if a field has been set.

func (*SingleSampleDataEnriched) HasRelayDeviceType

func (o *SingleSampleDataEnriched) HasRelayDeviceType() bool

HasRelayDeviceType returns a boolean if a field has been set.

func (*SingleSampleDataEnriched) HasRssi

func (o *SingleSampleDataEnriched) HasRssi() bool

HasRssi returns a boolean if a field has been set.

func (*SingleSampleDataEnriched) HasSla

func (o *SingleSampleDataEnriched) HasSla() bool

HasSla returns a boolean if a field has been set.

func (*SingleSampleDataEnriched) HasTemp

func (o *SingleSampleDataEnriched) HasTemp() bool

HasTemp returns a boolean if a field has been set.

func (*SingleSampleDataEnriched) HasTime

func (o *SingleSampleDataEnriched) HasTime() bool

HasTime returns a boolean if a field has been set.

func (*SingleSampleDataEnriched) HasVirusRisk

func (o *SingleSampleDataEnriched) HasVirusRisk() bool

HasVirusRisk returns a boolean if a field has been set.

func (*SingleSampleDataEnriched) HasVoc

func (o *SingleSampleDataEnriched) HasVoc() bool

HasVoc returns a boolean if a field has been set.

func (SingleSampleDataEnriched) MarshalJSON

func (o SingleSampleDataEnriched) MarshalJSON() ([]byte, error)

func (*SingleSampleDataEnriched) SetAirExchangeRate

func (o *SingleSampleDataEnriched) SetAirExchangeRate(v float64)

SetAirExchangeRate gets a reference to the given NullableFloat64 and assigns it to the AirExchangeRate field.

func (*SingleSampleDataEnriched) SetAirExchangeRateNil

func (o *SingleSampleDataEnriched) SetAirExchangeRateNil()

SetAirExchangeRateNil sets the value for AirExchangeRate to be an explicit nil

func (*SingleSampleDataEnriched) SetAirflow

func (o *SingleSampleDataEnriched) SetAirflow(v float64)

SetAirflow gets a reference to the given NullableFloat64 and assigns it to the Airflow field.

func (*SingleSampleDataEnriched) SetAirflowNil

func (o *SingleSampleDataEnriched) SetAirflowNil()

SetAirflowNil sets the value for Airflow to be an explicit nil

func (*SingleSampleDataEnriched) SetBattery

func (o *SingleSampleDataEnriched) SetBattery(v float32)

SetBattery gets a reference to the given NullableFloat32 and assigns it to the Battery field.

func (*SingleSampleDataEnriched) SetBatteryNil

func (o *SingleSampleDataEnriched) SetBatteryNil()

SetBatteryNil sets the value for Battery to be an explicit nil

func (*SingleSampleDataEnriched) SetCo2

func (o *SingleSampleDataEnriched) SetCo2(v float64)

SetCo2 gets a reference to the given NullableFloat64 and assigns it to the Co2 field.

func (*SingleSampleDataEnriched) SetCo2Nil

func (o *SingleSampleDataEnriched) SetCo2Nil()

SetCo2Nil sets the value for Co2 to be an explicit nil

func (*SingleSampleDataEnriched) SetControlSignal

SetControlSignal gets a reference to the given NullableSingleSampleDataEnrichedControlSignal and assigns it to the ControlSignal field.

func (*SingleSampleDataEnriched) SetControlSignalNil

func (o *SingleSampleDataEnriched) SetControlSignalNil()

SetControlSignalNil sets the value for ControlSignal to be an explicit nil

func (*SingleSampleDataEnriched) SetControlSignalSlot01

SetControlSignalSlot01 gets a reference to the given NullableSingleSampleDataEnrichedControlSignal and assigns it to the ControlSignalSlot01 field.

func (*SingleSampleDataEnriched) SetControlSignalSlot01Nil

func (o *SingleSampleDataEnriched) SetControlSignalSlot01Nil()

SetControlSignalSlot01Nil sets the value for ControlSignalSlot01 to be an explicit nil

func (*SingleSampleDataEnriched) SetControlSignalSlot02

SetControlSignalSlot02 gets a reference to the given NullableSingleSampleDataEnrichedControlSignal and assigns it to the ControlSignalSlot02 field.

func (*SingleSampleDataEnriched) SetControlSignalSlot02Nil

func (o *SingleSampleDataEnriched) SetControlSignalSlot02Nil()

SetControlSignalSlot02Nil sets the value for ControlSignalSlot02 to be an explicit nil

func (*SingleSampleDataEnriched) SetControlSignalSlot03

SetControlSignalSlot03 gets a reference to the given NullableSingleSampleDataEnrichedControlSignal and assigns it to the ControlSignalSlot03 field.

func (*SingleSampleDataEnriched) SetControlSignalSlot03Nil

func (o *SingleSampleDataEnriched) SetControlSignalSlot03Nil()

SetControlSignalSlot03Nil sets the value for ControlSignalSlot03 to be an explicit nil

func (*SingleSampleDataEnriched) SetControlSignalSlot04

SetControlSignalSlot04 gets a reference to the given NullableSingleSampleDataEnrichedControlSignal and assigns it to the ControlSignalSlot04 field.

func (*SingleSampleDataEnriched) SetControlSignalSlot04Nil

func (o *SingleSampleDataEnriched) SetControlSignalSlot04Nil()

SetControlSignalSlot04Nil sets the value for ControlSignalSlot04 to be an explicit nil

func (*SingleSampleDataEnriched) SetControlSignalSlot05

SetControlSignalSlot05 gets a reference to the given NullableSingleSampleDataEnrichedControlSignal and assigns it to the ControlSignalSlot05 field.

func (*SingleSampleDataEnriched) SetControlSignalSlot05Nil

func (o *SingleSampleDataEnriched) SetControlSignalSlot05Nil()

SetControlSignalSlot05Nil sets the value for ControlSignalSlot05 to be an explicit nil

func (*SingleSampleDataEnriched) SetControlSignalSlot06

SetControlSignalSlot06 gets a reference to the given NullableSingleSampleDataEnrichedControlSignal and assigns it to the ControlSignalSlot06 field.

func (*SingleSampleDataEnriched) SetControlSignalSlot06Nil

func (o *SingleSampleDataEnriched) SetControlSignalSlot06Nil()

SetControlSignalSlot06Nil sets the value for ControlSignalSlot06 to be an explicit nil

func (*SingleSampleDataEnriched) SetControlSignalSlot07

SetControlSignalSlot07 gets a reference to the given NullableSingleSampleDataEnrichedControlSignal and assigns it to the ControlSignalSlot07 field.

func (*SingleSampleDataEnriched) SetControlSignalSlot07Nil

func (o *SingleSampleDataEnriched) SetControlSignalSlot07Nil()

SetControlSignalSlot07Nil sets the value for ControlSignalSlot07 to be an explicit nil

func (*SingleSampleDataEnriched) SetControlSignalSlot08

SetControlSignalSlot08 gets a reference to the given NullableSingleSampleDataEnrichedControlSignal and assigns it to the ControlSignalSlot08 field.

func (*SingleSampleDataEnriched) SetControlSignalSlot08Nil

func (o *SingleSampleDataEnriched) SetControlSignalSlot08Nil()

SetControlSignalSlot08Nil sets the value for ControlSignalSlot08 to be an explicit nil

func (*SingleSampleDataEnriched) SetHumidity

SetHumidity gets a reference to the given NullableSingleSampleDataEnrichedControlSignal and assigns it to the Humidity field.

func (*SingleSampleDataEnriched) SetHumidityNil

func (o *SingleSampleDataEnriched) SetHumidityNil()

SetHumidityNil sets the value for Humidity to be an explicit nil

func (*SingleSampleDataEnriched) SetLight

SetLight gets a reference to the given NullableSingleSampleDataEnrichedLight and assigns it to the Light field.

func (*SingleSampleDataEnriched) SetLightNil

func (o *SingleSampleDataEnriched) SetLightNil()

SetLightNil sets the value for Light to be an explicit nil

func (*SingleSampleDataEnriched) SetLux

func (o *SingleSampleDataEnriched) SetLux(v float32)

SetLux gets a reference to the given NullableFloat32 and assigns it to the Lux field.

func (*SingleSampleDataEnriched) SetLuxNil

func (o *SingleSampleDataEnriched) SetLuxNil()

SetLuxNil sets the value for Lux to be an explicit nil

func (*SingleSampleDataEnriched) SetMold

SetMold gets a reference to the given NullableSingleSampleDataEnrichedControlSignal and assigns it to the Mold field.

func (*SingleSampleDataEnriched) SetMoldNil

func (o *SingleSampleDataEnriched) SetMoldNil()

SetMoldNil sets the value for Mold to be an explicit nil

func (*SingleSampleDataEnriched) SetOccupants

SetOccupants gets a reference to the given NullableSingleSampleDataEnrichedLight and assigns it to the Occupants field.

func (*SingleSampleDataEnriched) SetOccupantsLower

SetOccupantsLower gets a reference to the given NullableSingleSampleDataEnrichedLight and assigns it to the OccupantsLower field.

func (*SingleSampleDataEnriched) SetOccupantsLowerNil

func (o *SingleSampleDataEnriched) SetOccupantsLowerNil()

SetOccupantsLowerNil sets the value for OccupantsLower to be an explicit nil

func (*SingleSampleDataEnriched) SetOccupantsNil

func (o *SingleSampleDataEnriched) SetOccupantsNil()

SetOccupantsNil sets the value for Occupants to be an explicit nil

func (*SingleSampleDataEnriched) SetOccupantsUpper

SetOccupantsUpper gets a reference to the given NullableSingleSampleDataEnrichedLight and assigns it to the OccupantsUpper field.

func (*SingleSampleDataEnriched) SetOccupantsUpperNil

func (o *SingleSampleDataEnriched) SetOccupantsUpperNil()

SetOccupantsUpperNil sets the value for OccupantsUpper to be an explicit nil

func (*SingleSampleDataEnriched) SetOutdoorCo

SetOutdoorCo gets a reference to the given NullableSingleSampleDataEnrichedControlSignal and assigns it to the OutdoorCo field.

func (*SingleSampleDataEnriched) SetOutdoorCoNil

func (o *SingleSampleDataEnriched) SetOutdoorCoNil()

SetOutdoorCoNil sets the value for OutdoorCo to be an explicit nil

func (*SingleSampleDataEnriched) SetOutdoorHumidity

SetOutdoorHumidity gets a reference to the given NullableSingleSampleDataEnrichedControlSignal and assigns it to the OutdoorHumidity field.

func (*SingleSampleDataEnriched) SetOutdoorHumidityNil

func (o *SingleSampleDataEnriched) SetOutdoorHumidityNil()

SetOutdoorHumidityNil sets the value for OutdoorHumidity to be an explicit nil

func (*SingleSampleDataEnriched) SetOutdoorNo

SetOutdoorNo gets a reference to the given NullableSingleSampleDataEnrichedControlSignal and assigns it to the OutdoorNo field.

func (*SingleSampleDataEnriched) SetOutdoorNo2

SetOutdoorNo2 gets a reference to the given NullableSingleSampleDataEnrichedControlSignal and assigns it to the OutdoorNo2 field.

func (*SingleSampleDataEnriched) SetOutdoorNo2Nil

func (o *SingleSampleDataEnriched) SetOutdoorNo2Nil()

SetOutdoorNo2Nil sets the value for OutdoorNo2 to be an explicit nil

func (*SingleSampleDataEnriched) SetOutdoorNoNil

func (o *SingleSampleDataEnriched) SetOutdoorNoNil()

SetOutdoorNoNil sets the value for OutdoorNo to be an explicit nil

func (*SingleSampleDataEnriched) SetOutdoorO3

SetOutdoorO3 gets a reference to the given NullableSingleSampleDataEnrichedControlSignal and assigns it to the OutdoorO3 field.

func (*SingleSampleDataEnriched) SetOutdoorO3Nil

func (o *SingleSampleDataEnriched) SetOutdoorO3Nil()

SetOutdoorO3Nil sets the value for OutdoorO3 to be an explicit nil

func (*SingleSampleDataEnriched) SetOutdoorPm1

SetOutdoorPm1 gets a reference to the given NullableSingleSampleDataEnrichedControlSignal and assigns it to the OutdoorPm1 field.

func (*SingleSampleDataEnriched) SetOutdoorPm10

SetOutdoorPm10 gets a reference to the given NullableSingleSampleDataEnrichedControlSignal and assigns it to the OutdoorPm10 field.

func (*SingleSampleDataEnriched) SetOutdoorPm10Nil

func (o *SingleSampleDataEnriched) SetOutdoorPm10Nil()

SetOutdoorPm10Nil sets the value for OutdoorPm10 to be an explicit nil

func (*SingleSampleDataEnriched) SetOutdoorPm1Nil

func (o *SingleSampleDataEnriched) SetOutdoorPm1Nil()

SetOutdoorPm1Nil sets the value for OutdoorPm1 to be an explicit nil

func (*SingleSampleDataEnriched) SetOutdoorPm25

SetOutdoorPm25 gets a reference to the given NullableSingleSampleDataEnrichedControlSignal and assigns it to the OutdoorPm25 field.

func (*SingleSampleDataEnriched) SetOutdoorPm25Nil

func (o *SingleSampleDataEnriched) SetOutdoorPm25Nil()

SetOutdoorPm25Nil sets the value for OutdoorPm25 to be an explicit nil

func (*SingleSampleDataEnriched) SetOutdoorPressure

SetOutdoorPressure gets a reference to the given NullableSingleSampleDataEnrichedControlSignal and assigns it to the OutdoorPressure field.

func (*SingleSampleDataEnriched) SetOutdoorPressureNil

func (o *SingleSampleDataEnriched) SetOutdoorPressureNil()

SetOutdoorPressureNil sets the value for OutdoorPressure to be an explicit nil

func (*SingleSampleDataEnriched) SetOutdoorSo2

SetOutdoorSo2 gets a reference to the given NullableSingleSampleDataEnrichedControlSignal and assigns it to the OutdoorSo2 field.

func (*SingleSampleDataEnriched) SetOutdoorSo2Nil

func (o *SingleSampleDataEnriched) SetOutdoorSo2Nil()

SetOutdoorSo2Nil sets the value for OutdoorSo2 to be an explicit nil

func (*SingleSampleDataEnriched) SetOutdoorTemp

SetOutdoorTemp gets a reference to the given NullableSingleSampleDataEnrichedControlSignal and assigns it to the OutdoorTemp field.

func (*SingleSampleDataEnriched) SetOutdoorTempNil

func (o *SingleSampleDataEnriched) SetOutdoorTempNil()

SetOutdoorTempNil sets the value for OutdoorTemp to be an explicit nil

func (*SingleSampleDataEnriched) SetPm1

SetPm1 gets a reference to the given NullableSingleSampleDataEnrichedControlSignal and assigns it to the Pm1 field.

func (*SingleSampleDataEnriched) SetPm10

SetPm10 gets a reference to the given NullableSingleSampleDataEnrichedControlSignal and assigns it to the Pm10 field.

func (*SingleSampleDataEnriched) SetPm10Nil

func (o *SingleSampleDataEnriched) SetPm10Nil()

SetPm10Nil sets the value for Pm10 to be an explicit nil

func (*SingleSampleDataEnriched) SetPm1Nil

func (o *SingleSampleDataEnriched) SetPm1Nil()

SetPm1Nil sets the value for Pm1 to be an explicit nil

func (*SingleSampleDataEnriched) SetPm25

SetPm25 gets a reference to the given NullableSingleSampleDataEnrichedControlSignal and assigns it to the Pm25 field.

func (*SingleSampleDataEnriched) SetPm25Nil

func (o *SingleSampleDataEnriched) SetPm25Nil()

SetPm25Nil sets the value for Pm25 to be an explicit nil

func (*SingleSampleDataEnriched) SetPressure

SetPressure gets a reference to the given NullableSingleSampleDataEnrichedControlSignal and assigns it to the Pressure field.

func (*SingleSampleDataEnriched) SetPressureDifference

SetPressureDifference gets a reference to the given NullableSingleSampleDataEnrichedControlSignal and assigns it to the PressureDifference field.

func (*SingleSampleDataEnriched) SetPressureDifferenceNil

func (o *SingleSampleDataEnriched) SetPressureDifferenceNil()

SetPressureDifferenceNil sets the value for PressureDifference to be an explicit nil

func (*SingleSampleDataEnriched) SetPressureNil

func (o *SingleSampleDataEnriched) SetPressureNil()

SetPressureNil sets the value for Pressure to be an explicit nil

func (*SingleSampleDataEnriched) SetRadonShortTermAvg

SetRadonShortTermAvg gets a reference to the given NullableSingleSampleDataEnrichedControlSignal and assigns it to the RadonShortTermAvg field.

func (*SingleSampleDataEnriched) SetRadonShortTermAvgNil

func (o *SingleSampleDataEnriched) SetRadonShortTermAvgNil()

SetRadonShortTermAvgNil sets the value for RadonShortTermAvg to be an explicit nil

func (*SingleSampleDataEnriched) SetRegulationHeight

SetRegulationHeight gets a reference to the given NullableSingleSampleDataEnrichedControlSignal and assigns it to the RegulationHeight field.

func (*SingleSampleDataEnriched) SetRegulationHeightNil

func (o *SingleSampleDataEnriched) SetRegulationHeightNil()

SetRegulationHeightNil sets the value for RegulationHeight to be an explicit nil

func (*SingleSampleDataEnriched) SetRegulationPressure

SetRegulationPressure gets a reference to the given NullableSingleSampleDataEnrichedControlSignal and assigns it to the RegulationPressure field.

func (*SingleSampleDataEnriched) SetRegulationPressureNil

func (o *SingleSampleDataEnriched) SetRegulationPressureNil()

SetRegulationPressureNil sets the value for RegulationPressure to be an explicit nil

func (*SingleSampleDataEnriched) SetRelayDeviceType

func (o *SingleSampleDataEnriched) SetRelayDeviceType(v string)

SetRelayDeviceType gets a reference to the given NullableString and assigns it to the RelayDeviceType field.

func (*SingleSampleDataEnriched) SetRelayDeviceTypeNil

func (o *SingleSampleDataEnriched) SetRelayDeviceTypeNil()

SetRelayDeviceTypeNil sets the value for RelayDeviceType to be an explicit nil

func (*SingleSampleDataEnriched) SetRssi

SetRssi gets a reference to the given NullableSingleSampleDataEnrichedLight and assigns it to the Rssi field.

func (*SingleSampleDataEnriched) SetRssiNil

func (o *SingleSampleDataEnriched) SetRssiNil()

SetRssiNil sets the value for Rssi to be an explicit nil

func (*SingleSampleDataEnriched) SetSla

SetSla gets a reference to the given NullableSingleSampleDataEnrichedControlSignal and assigns it to the Sla field.

func (*SingleSampleDataEnriched) SetSlaNil

func (o *SingleSampleDataEnriched) SetSlaNil()

SetSlaNil sets the value for Sla to be an explicit nil

func (*SingleSampleDataEnriched) SetTemp

SetTemp gets a reference to the given NullableSingleSampleDataEnrichedControlSignal and assigns it to the Temp field.

func (*SingleSampleDataEnriched) SetTempNil

func (o *SingleSampleDataEnriched) SetTempNil()

SetTempNil sets the value for Temp to be an explicit nil

func (*SingleSampleDataEnriched) SetTime

SetTime gets a reference to the given NullableSingleSampleDataEnrichedLight and assigns it to the Time field.

func (*SingleSampleDataEnriched) SetTimeNil

func (o *SingleSampleDataEnriched) SetTimeNil()

SetTimeNil sets the value for Time to be an explicit nil

func (*SingleSampleDataEnriched) SetVirusRisk

SetVirusRisk gets a reference to the given NullableSingleSampleDataEnrichedControlSignal and assigns it to the VirusRisk field.

func (*SingleSampleDataEnriched) SetVirusRiskNil

func (o *SingleSampleDataEnriched) SetVirusRiskNil()

SetVirusRiskNil sets the value for VirusRisk to be an explicit nil

func (*SingleSampleDataEnriched) SetVoc

SetVoc gets a reference to the given NullableSingleSampleDataEnrichedControlSignal and assigns it to the Voc field.

func (*SingleSampleDataEnriched) SetVocNil

func (o *SingleSampleDataEnriched) SetVocNil()

SetVocNil sets the value for Voc to be an explicit nil

func (SingleSampleDataEnriched) ToMap

func (o SingleSampleDataEnriched) ToMap() (map[string]interface{}, error)

func (*SingleSampleDataEnriched) UnsetAirExchangeRate

func (o *SingleSampleDataEnriched) UnsetAirExchangeRate()

UnsetAirExchangeRate ensures that no value is present for AirExchangeRate, not even an explicit nil

func (*SingleSampleDataEnriched) UnsetAirflow

func (o *SingleSampleDataEnriched) UnsetAirflow()

UnsetAirflow ensures that no value is present for Airflow, not even an explicit nil

func (*SingleSampleDataEnriched) UnsetBattery

func (o *SingleSampleDataEnriched) UnsetBattery()

UnsetBattery ensures that no value is present for Battery, not even an explicit nil

func (*SingleSampleDataEnriched) UnsetCo2

func (o *SingleSampleDataEnriched) UnsetCo2()

UnsetCo2 ensures that no value is present for Co2, not even an explicit nil

func (*SingleSampleDataEnriched) UnsetControlSignal

func (o *SingleSampleDataEnriched) UnsetControlSignal()

UnsetControlSignal ensures that no value is present for ControlSignal, not even an explicit nil

func (*SingleSampleDataEnriched) UnsetControlSignalSlot01

func (o *SingleSampleDataEnriched) UnsetControlSignalSlot01()

UnsetControlSignalSlot01 ensures that no value is present for ControlSignalSlot01, not even an explicit nil

func (*SingleSampleDataEnriched) UnsetControlSignalSlot02

func (o *SingleSampleDataEnriched) UnsetControlSignalSlot02()

UnsetControlSignalSlot02 ensures that no value is present for ControlSignalSlot02, not even an explicit nil

func (*SingleSampleDataEnriched) UnsetControlSignalSlot03

func (o *SingleSampleDataEnriched) UnsetControlSignalSlot03()

UnsetControlSignalSlot03 ensures that no value is present for ControlSignalSlot03, not even an explicit nil

func (*SingleSampleDataEnriched) UnsetControlSignalSlot04

func (o *SingleSampleDataEnriched) UnsetControlSignalSlot04()

UnsetControlSignalSlot04 ensures that no value is present for ControlSignalSlot04, not even an explicit nil

func (*SingleSampleDataEnriched) UnsetControlSignalSlot05

func (o *SingleSampleDataEnriched) UnsetControlSignalSlot05()

UnsetControlSignalSlot05 ensures that no value is present for ControlSignalSlot05, not even an explicit nil

func (*SingleSampleDataEnriched) UnsetControlSignalSlot06

func (o *SingleSampleDataEnriched) UnsetControlSignalSlot06()

UnsetControlSignalSlot06 ensures that no value is present for ControlSignalSlot06, not even an explicit nil

func (*SingleSampleDataEnriched) UnsetControlSignalSlot07

func (o *SingleSampleDataEnriched) UnsetControlSignalSlot07()

UnsetControlSignalSlot07 ensures that no value is present for ControlSignalSlot07, not even an explicit nil

func (*SingleSampleDataEnriched) UnsetControlSignalSlot08

func (o *SingleSampleDataEnriched) UnsetControlSignalSlot08()

UnsetControlSignalSlot08 ensures that no value is present for ControlSignalSlot08, not even an explicit nil

func (*SingleSampleDataEnriched) UnsetHumidity

func (o *SingleSampleDataEnriched) UnsetHumidity()

UnsetHumidity ensures that no value is present for Humidity, not even an explicit nil

func (*SingleSampleDataEnriched) UnsetLight

func (o *SingleSampleDataEnriched) UnsetLight()

UnsetLight ensures that no value is present for Light, not even an explicit nil

func (*SingleSampleDataEnriched) UnsetLux

func (o *SingleSampleDataEnriched) UnsetLux()

UnsetLux ensures that no value is present for Lux, not even an explicit nil

func (*SingleSampleDataEnriched) UnsetMold

func (o *SingleSampleDataEnriched) UnsetMold()

UnsetMold ensures that no value is present for Mold, not even an explicit nil

func (*SingleSampleDataEnriched) UnsetOccupants

func (o *SingleSampleDataEnriched) UnsetOccupants()

UnsetOccupants ensures that no value is present for Occupants, not even an explicit nil

func (*SingleSampleDataEnriched) UnsetOccupantsLower

func (o *SingleSampleDataEnriched) UnsetOccupantsLower()

UnsetOccupantsLower ensures that no value is present for OccupantsLower, not even an explicit nil

func (*SingleSampleDataEnriched) UnsetOccupantsUpper

func (o *SingleSampleDataEnriched) UnsetOccupantsUpper()

UnsetOccupantsUpper ensures that no value is present for OccupantsUpper, not even an explicit nil

func (*SingleSampleDataEnriched) UnsetOutdoorCo

func (o *SingleSampleDataEnriched) UnsetOutdoorCo()

UnsetOutdoorCo ensures that no value is present for OutdoorCo, not even an explicit nil

func (*SingleSampleDataEnriched) UnsetOutdoorHumidity

func (o *SingleSampleDataEnriched) UnsetOutdoorHumidity()

UnsetOutdoorHumidity ensures that no value is present for OutdoorHumidity, not even an explicit nil

func (*SingleSampleDataEnriched) UnsetOutdoorNo

func (o *SingleSampleDataEnriched) UnsetOutdoorNo()

UnsetOutdoorNo ensures that no value is present for OutdoorNo, not even an explicit nil

func (*SingleSampleDataEnriched) UnsetOutdoorNo2

func (o *SingleSampleDataEnriched) UnsetOutdoorNo2()

UnsetOutdoorNo2 ensures that no value is present for OutdoorNo2, not even an explicit nil

func (*SingleSampleDataEnriched) UnsetOutdoorO3

func (o *SingleSampleDataEnriched) UnsetOutdoorO3()

UnsetOutdoorO3 ensures that no value is present for OutdoorO3, not even an explicit nil

func (*SingleSampleDataEnriched) UnsetOutdoorPm1

func (o *SingleSampleDataEnriched) UnsetOutdoorPm1()

UnsetOutdoorPm1 ensures that no value is present for OutdoorPm1, not even an explicit nil

func (*SingleSampleDataEnriched) UnsetOutdoorPm10

func (o *SingleSampleDataEnriched) UnsetOutdoorPm10()

UnsetOutdoorPm10 ensures that no value is present for OutdoorPm10, not even an explicit nil

func (*SingleSampleDataEnriched) UnsetOutdoorPm25

func (o *SingleSampleDataEnriched) UnsetOutdoorPm25()

UnsetOutdoorPm25 ensures that no value is present for OutdoorPm25, not even an explicit nil

func (*SingleSampleDataEnriched) UnsetOutdoorPressure

func (o *SingleSampleDataEnriched) UnsetOutdoorPressure()

UnsetOutdoorPressure ensures that no value is present for OutdoorPressure, not even an explicit nil

func (*SingleSampleDataEnriched) UnsetOutdoorSo2

func (o *SingleSampleDataEnriched) UnsetOutdoorSo2()

UnsetOutdoorSo2 ensures that no value is present for OutdoorSo2, not even an explicit nil

func (*SingleSampleDataEnriched) UnsetOutdoorTemp

func (o *SingleSampleDataEnriched) UnsetOutdoorTemp()

UnsetOutdoorTemp ensures that no value is present for OutdoorTemp, not even an explicit nil

func (*SingleSampleDataEnriched) UnsetPm1

func (o *SingleSampleDataEnriched) UnsetPm1()

UnsetPm1 ensures that no value is present for Pm1, not even an explicit nil

func (*SingleSampleDataEnriched) UnsetPm10

func (o *SingleSampleDataEnriched) UnsetPm10()

UnsetPm10 ensures that no value is present for Pm10, not even an explicit nil

func (*SingleSampleDataEnriched) UnsetPm25

func (o *SingleSampleDataEnriched) UnsetPm25()

UnsetPm25 ensures that no value is present for Pm25, not even an explicit nil

func (*SingleSampleDataEnriched) UnsetPressure

func (o *SingleSampleDataEnriched) UnsetPressure()

UnsetPressure ensures that no value is present for Pressure, not even an explicit nil

func (*SingleSampleDataEnriched) UnsetPressureDifference

func (o *SingleSampleDataEnriched) UnsetPressureDifference()

UnsetPressureDifference ensures that no value is present for PressureDifference, not even an explicit nil

func (*SingleSampleDataEnriched) UnsetRadonShortTermAvg

func (o *SingleSampleDataEnriched) UnsetRadonShortTermAvg()

UnsetRadonShortTermAvg ensures that no value is present for RadonShortTermAvg, not even an explicit nil

func (*SingleSampleDataEnriched) UnsetRegulationHeight

func (o *SingleSampleDataEnriched) UnsetRegulationHeight()

UnsetRegulationHeight ensures that no value is present for RegulationHeight, not even an explicit nil

func (*SingleSampleDataEnriched) UnsetRegulationPressure

func (o *SingleSampleDataEnriched) UnsetRegulationPressure()

UnsetRegulationPressure ensures that no value is present for RegulationPressure, not even an explicit nil

func (*SingleSampleDataEnriched) UnsetRelayDeviceType

func (o *SingleSampleDataEnriched) UnsetRelayDeviceType()

UnsetRelayDeviceType ensures that no value is present for RelayDeviceType, not even an explicit nil

func (*SingleSampleDataEnriched) UnsetRssi

func (o *SingleSampleDataEnriched) UnsetRssi()

UnsetRssi ensures that no value is present for Rssi, not even an explicit nil

func (*SingleSampleDataEnriched) UnsetSla

func (o *SingleSampleDataEnriched) UnsetSla()

UnsetSla ensures that no value is present for Sla, not even an explicit nil

func (*SingleSampleDataEnriched) UnsetTemp

func (o *SingleSampleDataEnriched) UnsetTemp()

UnsetTemp ensures that no value is present for Temp, not even an explicit nil

func (*SingleSampleDataEnriched) UnsetTime

func (o *SingleSampleDataEnriched) UnsetTime()

UnsetTime ensures that no value is present for Time, not even an explicit nil

func (*SingleSampleDataEnriched) UnsetVirusRisk

func (o *SingleSampleDataEnriched) UnsetVirusRisk()

UnsetVirusRisk ensures that no value is present for VirusRisk, not even an explicit nil

func (*SingleSampleDataEnriched) UnsetVoc

func (o *SingleSampleDataEnriched) UnsetVoc()

UnsetVoc ensures that no value is present for Voc, not even an explicit nil

type SingleSampleDataEnrichedControlSignal

type SingleSampleDataEnrichedControlSignal struct {
	Float64 *float64
}

SingleSampleDataEnrichedControlSignal - struct for SingleSampleDataEnrichedControlSignal

func Float64AsSingleSampleDataEnrichedControlSignal

func Float64AsSingleSampleDataEnrichedControlSignal(v *float64) SingleSampleDataEnrichedControlSignal

float64AsSingleSampleDataEnrichedControlSignal is a convenience function that returns float64 wrapped in SingleSampleDataEnrichedControlSignal

func (*SingleSampleDataEnrichedControlSignal) GetActualInstance

func (obj *SingleSampleDataEnrichedControlSignal) GetActualInstance() interface{}

Get the actual instance

func (SingleSampleDataEnrichedControlSignal) MarshalJSON

func (src SingleSampleDataEnrichedControlSignal) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*SingleSampleDataEnrichedControlSignal) UnmarshalJSON

func (dst *SingleSampleDataEnrichedControlSignal) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type SingleSampleDataEnrichedLight

type SingleSampleDataEnrichedLight struct {
	Float32 *float32
}

SingleSampleDataEnrichedLight - struct for SingleSampleDataEnrichedLight

func Float32AsSingleSampleDataEnrichedLight

func Float32AsSingleSampleDataEnrichedLight(v *float32) SingleSampleDataEnrichedLight

float32AsSingleSampleDataEnrichedLight is a convenience function that returns float32 wrapped in SingleSampleDataEnrichedLight

func (*SingleSampleDataEnrichedLight) GetActualInstance

func (obj *SingleSampleDataEnrichedLight) GetActualInstance() interface{}

Get the actual instance

func (SingleSampleDataEnrichedLight) MarshalJSON

func (src SingleSampleDataEnrichedLight) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*SingleSampleDataEnrichedLight) UnmarshalJSON

func (dst *SingleSampleDataEnrichedLight) UnmarshalJSON(data []byte) error

Unmarshal JSON data into one of the pointers in the struct

type Time

type Time struct {
	time.Time
}

func (Time) MarshalJSON

func (t Time) MarshalJSON() ([]byte, error)

func (*Time) UnmarshalJSON

func (t *Time) UnmarshalJSON(b []byte) error

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL