Class: NgrokAPI::Models::Location
- Inherits:
-
Object
- Object
- NgrokAPI::Models::Location
- Defined in:
- lib/ngrokapi/models/location.rb
Instance Attribute Summary collapse
-
#attrs ⇒ Object
readonly
Returns the value of attribute attrs.
-
#client ⇒ Object
readonly
Returns the value of attribute client.
-
#country_code ⇒ Object
readonly
Returns the value of attribute country_code.
-
#lat_long_radius_km ⇒ Object
readonly
Returns the value of attribute lat_long_radius_km.
-
#latitude ⇒ Object
readonly
Returns the value of attribute latitude.
-
#longitude ⇒ Object
readonly
Returns the value of attribute longitude.
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#initialize(client: nil, attrs: {}) ⇒ Location
constructor
A new instance of Location.
- #to_h ⇒ Object
- #to_s ⇒ Object
Constructor Details
#initialize(client: nil, attrs: {}) ⇒ Location
Returns a new instance of Location.
15 16 17 18 19 20 21 22 |
# File 'lib/ngrokapi/models/location.rb', line 15 def initialize(client: nil, attrs: {}) @client = client @attrs = attrs @country_code = @attrs['country_code'] @latitude = @attrs['latitude'] @longitude = @attrs['longitude'] @lat_long_radius_km = @attrs['lat_long_radius_km'] end |
Instance Attribute Details
#attrs ⇒ Object (readonly)
Returns the value of attribute attrs.
8 9 10 |
# File 'lib/ngrokapi/models/location.rb', line 8 def attrs @attrs end |
#client ⇒ Object (readonly)
Returns the value of attribute client.
8 9 10 |
# File 'lib/ngrokapi/models/location.rb', line 8 def client @client end |
#country_code ⇒ Object (readonly)
Returns the value of attribute country_code.
8 9 10 |
# File 'lib/ngrokapi/models/location.rb', line 8 def country_code @country_code end |
#lat_long_radius_km ⇒ Object (readonly)
Returns the value of attribute lat_long_radius_km.
8 9 10 |
# File 'lib/ngrokapi/models/location.rb', line 8 def lat_long_radius_km @lat_long_radius_km end |
#latitude ⇒ Object (readonly)
Returns the value of attribute latitude.
8 9 10 |
# File 'lib/ngrokapi/models/location.rb', line 8 def latitude @latitude end |
#longitude ⇒ Object (readonly)
Returns the value of attribute longitude.
8 9 10 |
# File 'lib/ngrokapi/models/location.rb', line 8 def longitude @longitude end |
Instance Method Details
#==(other) ⇒ Object
24 25 26 |
# File 'lib/ngrokapi/models/location.rb', line 24 def ==(other) @attrs == other.attrs end |
#to_h ⇒ Object
32 33 34 |
# File 'lib/ngrokapi/models/location.rb', line 32 def to_h @attrs.to_h end |
#to_s ⇒ Object
28 29 30 |
# File 'lib/ngrokapi/models/location.rb', line 28 def to_s @attrs.to_s end |