Class: Samsara::Types::EquipmentFuelPercent
- Inherits:
-
Object
- Object
- Samsara::Types::EquipmentFuelPercent
- Defined in:
- lib/samsara_api/types/equipment_fuel_percent.rb
Overview
Fuel percent reading.
Constant Summary collapse
- OMIT =
Object.new
Instance Attribute Summary collapse
-
#additional_properties ⇒ OpenStruct
readonly
Additional properties unmapped to the current class definition.
- #time ⇒ String readonly
-
#value ⇒ Integer
readonly
The percent of fuel in the unit of equipment.
Class Method Summary collapse
Instance Method Summary collapse
- #initialize(time:, value:, additional_properties: nil) ⇒ Samsara::Types::EquipmentFuelPercent constructor
- #to_json ⇒ String
Constructor Details
#initialize(time:, value:, additional_properties: nil) ⇒ Samsara::Types::EquipmentFuelPercent
25 26 27 28 29 30 |
# File 'lib/samsara_api/types/equipment_fuel_percent.rb', line 25 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_properties ⇒ OpenStruct (readonly)
Returns Additional properties unmapped to the current class definition.
14 15 16 |
# File 'lib/samsara_api/types/equipment_fuel_percent.rb', line 14 def additional_properties @additional_properties end |
#time ⇒ String (readonly)
10 11 12 |
# File 'lib/samsara_api/types/equipment_fuel_percent.rb', line 10 def time @time end |
#value ⇒ Integer (readonly)
Returns The percent of fuel in the unit of equipment.
12 13 14 |
# File 'lib/samsara_api/types/equipment_fuel_percent.rb', line 12 def value @value end |
Class Method Details
.from_json(json_object:) ⇒ Samsara::Types::EquipmentFuelPercent
35 36 37 38 39 40 41 42 43 44 45 |
# File 'lib/samsara_api/types/equipment_fuel_percent.rb', line 35 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
58 59 60 61 |
# File 'lib/samsara_api/types/equipment_fuel_percent.rb', line 58 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?(Integer) != false || raise("Passed value for field obj.value is not the expected type, validation failed.") end |
Instance Method Details
#to_json ⇒ String
49 50 51 |
# File 'lib/samsara_api/types/equipment_fuel_percent.rb', line 49 def to_json @_field_set&.to_json end |