Class: Verizon::Coordinates
- Defined in:
- lib/verizon/models/coordinates.rb
Overview
Coordinates information.
Instance Attribute Summary collapse
-
#latitude ⇒ String
Latitude value of location.
-
#longitude ⇒ String
Longitude value of location.
Class Method Summary collapse
-
.from_hash(hash) ⇒ Object
Creates an instance of the object from a hash.
-
.names ⇒ Object
A mapping from model property names to API property names.
-
.nullables ⇒ Object
An array for nullable fields.
-
.optionals ⇒ Object
An array for optional fields.
Instance Method Summary collapse
-
#initialize(latitude = SKIP, longitude = SKIP) ⇒ Coordinates
constructor
A new instance of Coordinates.
Methods inherited from BaseModel
Constructor Details
#initialize(latitude = SKIP, longitude = SKIP) ⇒ Coordinates
Returns a new instance of Coordinates.
41 42 43 44 45 |
# File 'lib/verizon/models/coordinates.rb', line 41 def initialize(latitude = SKIP, longitude = SKIP) @latitude = latitude unless latitude == SKIP @longitude = longitude unless longitude == SKIP end |
Instance Attribute Details
#latitude ⇒ String
Latitude value of location.
14 15 16 |
# File 'lib/verizon/models/coordinates.rb', line 14 def latitude @latitude end |
#longitude ⇒ String
Longitude value of location.
18 19 20 |
# File 'lib/verizon/models/coordinates.rb', line 18 def longitude @longitude end |
Class Method Details
.from_hash(hash) ⇒ Object
Creates an instance of the object from a hash.
48 49 50 51 52 53 54 55 56 57 58 |
# File 'lib/verizon/models/coordinates.rb', line 48 def self.from_hash(hash) return nil unless hash # Extract variables from the hash. latitude = hash.key?('latitude') ? hash['latitude'] : SKIP longitude = hash.key?('longitude') ? hash['longitude'] : SKIP # Create object from extracted values. Coordinates.new(latitude, longitude) end |
.names ⇒ Object
A mapping from model property names to API property names.
21 22 23 24 25 26 |
# File 'lib/verizon/models/coordinates.rb', line 21 def self.names @_hash = {} if @_hash.nil? @_hash['latitude'] = 'latitude' @_hash['longitude'] = 'longitude' @_hash end |
.nullables ⇒ Object
An array for nullable fields
37 38 39 |
# File 'lib/verizon/models/coordinates.rb', line 37 def self.nullables [] end |
.optionals ⇒ Object
An array for optional fields
29 30 31 32 33 34 |
# File 'lib/verizon/models/coordinates.rb', line 29 def self.optionals %w[ latitude longitude ] end |