class GeolocationCurrency
Attributes
code[R]
name[R]
Public Class Methods
new(json)
click to toggle source
# File lib/ipgeolocation_io/GeolocationCurrency.rb, line 6 def initialize(json) @name = json["name"]; @code = json["code"]; end