Class: Pinnacle::ActionLatLong
- Inherits:
-
Object
- Object
- Pinnacle::ActionLatLong
- Defined in:
- lib/rcs/types/action_lat_long.rb
Overview
Latitude and longitude coordinates. Required for ‘sendLocation’.
Constant Summary collapse
- OMIT =
Object.new
Instance Attribute Summary collapse
-
#additional_properties ⇒ OpenStruct
readonly
Additional properties unmapped to the current class definition.
-
#lat ⇒ Float
readonly
Latitude value.
-
#lng ⇒ Float
readonly
Longitude value.
Class Method Summary collapse
-
.from_json(json_object:) ⇒ Pinnacle::ActionLatLong
Deserialize a JSON object to an instance of ActionLatLong.
-
.validate_raw(obj:) ⇒ Void
Leveraged for Union-type generation, validate_raw attempts to parse the given hash and check each fields type against the current object’s property definitions.
Instance Method Summary collapse
- #initialize(lat: OMIT, lng: OMIT, additional_properties: nil) ⇒ Pinnacle::ActionLatLong constructor
-
#to_json(*_args) ⇒ String
Serialize an instance of ActionLatLong to a JSON object.
Constructor Details
#initialize(lat: OMIT, lng: OMIT, additional_properties: nil) ⇒ Pinnacle::ActionLatLong
25 26 27 28 29 30 31 32 |
# File 'lib/rcs/types/action_lat_long.rb', line 25 def initialize(lat: OMIT, lng: OMIT, additional_properties: nil) @lat = lat if lat != OMIT @lng = lng if lng != OMIT @additional_properties = additional_properties @_field_set = { "lat": lat, "lng": lng }.reject do |_k, v| v == OMIT end end |
Instance Attribute Details
#additional_properties ⇒ OpenStruct (readonly)
Returns Additional properties unmapped to the current class definition.
14 15 16 |
# File 'lib/rcs/types/action_lat_long.rb', line 14 def additional_properties @additional_properties end |
#lat ⇒ Float (readonly)
Returns Latitude value.
10 11 12 |
# File 'lib/rcs/types/action_lat_long.rb', line 10 def lat @lat end |
#lng ⇒ Float (readonly)
Returns Longitude value.
12 13 14 |
# File 'lib/rcs/types/action_lat_long.rb', line 12 def lng @lng end |
Class Method Details
.from_json(json_object:) ⇒ Pinnacle::ActionLatLong
Deserialize a JSON object to an instance of ActionLatLong
38 39 40 41 42 43 44 45 46 47 48 |
# File 'lib/rcs/types/action_lat_long.rb', line 38 def self.from_json(json_object:) struct = JSON.parse(json_object, object_class: OpenStruct) parsed_json = JSON.parse(json_object) lat = parsed_json["lat"] lng = parsed_json["lng"] new( lat: lat, lng: lng, additional_properties: struct ) end |
.validate_raw(obj:) ⇒ Void
Leveraged for Union-type generation, validate_raw attempts to parse the given
hash and check each fields type against the current object's property
definitions.
63 64 65 66 |
# File 'lib/rcs/types/action_lat_long.rb', line 63 def self.validate_raw(obj:) obj.lat&.is_a?(Float) != false || raise("Passed value for field obj.lat is not the expected type, validation failed.") obj.lng&.is_a?(Float) != false || raise("Passed value for field obj.lng is not the expected type, validation failed.") end |
Instance Method Details
#to_json(*_args) ⇒ String
Serialize an instance of ActionLatLong to a JSON object
53 54 55 |
# File 'lib/rcs/types/action_lat_long.rb', line 53 def to_json(*_args) @_field_set&.to_json end |