DeviceVariable

@objc(LSDeviceVariable)
final class DeviceVariable
extension DeviceVariable : CVarArg, CustomDebugStringConvertible, CustomStringConvertible, Equatable, Hashable, NSObjectProtocol

Undocumented

  • id

    Variable ID.

    Declaration

    Swift

    @objc
    var id: Int
  • Name of the variable.

    Declaration

    Swift

    @objc
    var variable: String
  • Value of the variable.

    Declaration

    Swift

    @objc
    var value: String
  • Date when the variable has been set.

    Declaration

    Swift

    @objc
    var createdAt: Date
  • Device ID related the variable is bound to.

    Declaration

    Swift

    @objc
    var deviceID: Int
  • Undocumented

    Declaration

    Swift

    @objc
    init(id: Int, variable: String, value: String, createdAt: Date, deviceID: Int)