class OandaAPI::Client::JsonParser

Overrides the default JSON parser to symbolize names.

Constants

SupportedFormats

Protected Instance Methods

json() click to toggle source

perform json parsing on body

# File lib/oanda_api/client/json_parser.rb, line 11
def json
  JSON.parse body, symbolize_names: true
end