Class: Samsara::Types::AlertObjectDriverResponseBody

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

Overview

A driver associated with the alert

Constant Summary collapse

OMIT =
Object.new

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes: OMIT, external_ids: OMIT, id:, name: OMIT, tags: OMIT, additional_properties: nil) ⇒ Samsara::Types::AlertObjectDriverResponseBody

Parameters:

  • additional_properties (OpenStruct) (defaults to: nil)

    Additional properties unmapped to the current class definition



40
41
42
43
44
45
46
47
48
49
50
# File 'lib/samsara_api/types/alert_object_driver_response_body.rb', line 40

def initialize(attributes: OMIT, external_ids: OMIT, id:, name: OMIT, tags: OMIT, additional_properties: nil)
  @attributes = attributes if attributes != OMIT
  @external_ids = external_ids if external_ids != OMIT
  @id = id
  @name = name if name != OMIT
  @tags = tags if tags != OMIT
  @additional_properties = additional_properties
  @_field_set = { "attributes": attributes, "externalIds": external_ids, "id": id, "name": name, "tags": tags }.reject do | _k, v |
  v == OMIT
end
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



24
25
26
# File 'lib/samsara_api/types/alert_object_driver_response_body.rb', line 24

def additional_properties
  @additional_properties
end

#attributesArray<Samsara::Types::GoaAttributeTinyResponseBody> (readonly)

Returns List of attributes associated with the entity.

Returns:



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

def attributes
  @attributes
end

#external_idsHash{String => String} (readonly)

Returns A map of external ids.

Returns:

  • (Hash{String => String})

    A map of external ids



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

def external_ids
  @external_ids
end

#idString (readonly)

Returns The ID of the driver.

Returns:

  • (String)

    The ID of the driver



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

def id
  @id
end

#nameString (readonly)

Returns The name of the driver.

Returns:

  • (String)

    The name of the driver.



18
19
20
# File 'lib/samsara_api/types/alert_object_driver_response_body.rb', line 18

def name
  @name
end

#tagsObject (readonly)

associated with the driver.



22
23
24
# File 'lib/samsara_api/types/alert_object_driver_response_body.rb', line 22

def tags
  @tags
end

Class Method Details

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

Parameters:

  • json_object (String)

Returns:



55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# File 'lib/samsara_api/types/alert_object_driver_response_body.rb', line 55

def self.from_json(json_object:)
  struct = JSON.parse(json_object, object_class: OpenStruct)
  parsed_json = JSON.parse(json_object)
  attributes = parsed_json["attributes"]&.map do | item |
  item = item.to_json
  Samsara::Types::GoaAttributeTinyResponseBody.from_json(json_object: item)
end
  external_ids = parsed_json["externalIds"]
  id = parsed_json["id"]
  name = parsed_json["name"]
  tags = parsed_json["tags"]&.map do | item |
  item = item.to_json
  Samsara::Types::GoaTagTinyResponseResponseBody.from_json(json_object: item)
end
  new(
    attributes: attributes,
    external_ids: external_ids,
    id: id,
    name: name,
    tags: tags,
    additional_properties: struct
  )
end

.validate_raw(obj:) ⇒ Void

Parameters:

  • obj (Object)

Returns:

  • (Void)


90
91
92
93
94
95
96
# File 'lib/samsara_api/types/alert_object_driver_response_body.rb', line 90

def self.validate_raw(obj:)
  obj.attributes&.is_a?(Array) != false || raise("Passed value for field obj.attributes is not the expected type, validation failed.")
  obj.external_ids&.is_a?(Hash) != false || raise("Passed value for field obj.external_ids is not the expected type, validation failed.")
  obj.id.is_a?(String) != false || raise("Passed value for field obj.id is not the expected type, validation failed.")
  obj.name&.is_a?(String) != false || raise("Passed value for field obj.name is not the expected type, validation failed.")
  obj.tags&.is_a?(Array) != false || raise("Passed value for field obj.tags is not the expected type, validation failed.")
end

Instance Method Details

#to_jsonString

Returns:

  • (String)


81
82
83
# File 'lib/samsara_api/types/alert_object_driver_response_body.rb', line 81

def to_json
  @_field_set&.to_json
end