Class: Samsara::Types::VehicleStatsResponseSpreaderPlowStatus

Inherits:
Object
  • Object
show all
Defined in:
lib/samsara_api/types/vehicle_stats_response_spreader_plow_status.rb

Overview

this is separate from plow status defined via auxInput.

Constant Summary collapse

OMIT =
Object.new

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(time:, value:, additional_properties: nil) ⇒ Samsara::Types::VehicleStatsResponseSpreaderPlowStatus

Parameters:

  • time (String)

    UTC timestamp in RFC 3339 format. Example: ‘2020-01-27T07:06:25Z`.

  • value (Samsara::Types::VehicleStatsResponseSpreaderPlowStatusValue)

    Snow plow status, as read from the material spreader

  • additional_properties (OpenStruct) (defaults to: nil)

    Additional properties unmapped to the current class definition



27
28
29
30
31
32
# File 'lib/samsara_api/types/vehicle_stats_response_spreader_plow_status.rb', line 27

def initialize(time:, value:, additional_properties: nil)
  @time = time
  @value = value
  @additional_properties = additional_properties
  @_field_set = { "time": time, "value": value }
end

Instance Attribute Details

#additional_propertiesOpenStruct (readonly)

Returns Additional properties unmapped to the current class definition.

Returns:

  • (OpenStruct)

    Additional properties unmapped to the current class definition



16
17
18
# File 'lib/samsara_api/types/vehicle_stats_response_spreader_plow_status.rb', line 16

def additional_properties
  @additional_properties
end

#timeString (readonly)

Returns UTC timestamp in RFC 3339 format. Example: ‘2020-01-27T07:06:25Z`.

Returns:

  • (String)

    UTC timestamp in RFC 3339 format. Example: ‘2020-01-27T07:06:25Z`.



12
13
14
# File 'lib/samsara_api/types/vehicle_stats_response_spreader_plow_status.rb', line 12

def time
  @time
end

#valueSamsara::Types::VehicleStatsResponseSpreaderPlowStatusValue (readonly)

Returns Snow plow status, as read from the material spreader.

Returns:



14
15
16
# File 'lib/samsara_api/types/vehicle_stats_response_spreader_plow_status.rb', line 14

def value
  @value
end

Class Method Details

.from_json(json_object:) ⇒ Samsara::Types::VehicleStatsResponseSpreaderPlowStatus

Parameters:

  • json_object (String)

Returns:



38
39
40
41
42
43
44
45
46
47
48
# File 'lib/samsara_api/types/vehicle_stats_response_spreader_plow_status.rb', line 38

def self.from_json(json_object:)
  struct = JSON.parse(json_object, object_class: OpenStruct)
  parsed_json = JSON.parse(json_object)
  time = parsed_json["time"]
  value = parsed_json["value"]
  new(
    time: time,
    value: value,
    additional_properties: struct
  )
end

.validate_raw(obj:) ⇒ Void

Parameters:

  • obj (Object)

Returns:

  • (Void)


61
62
63
64
# File 'lib/samsara_api/types/vehicle_stats_response_spreader_plow_status.rb', line 61

def self.validate_raw(obj:)
  obj.time.is_a?(String) != false || raise("Passed value for field obj.time is not the expected type, validation failed.")
  obj.value.is_a?(Samsara::Types::VehicleStatsResponseSpreaderPlowStatusValue) != false || raise("Passed value for field obj.value is not the expected type, validation failed.")
end

Instance Method Details

#to_jsonString

Returns:

  • (String)


52
53
54
# File 'lib/samsara_api/types/vehicle_stats_response_spreader_plow_status.rb', line 52

def to_json
  @_field_set&.to_json
end