module GDAXClient::HTTP::ProductTicker::Get::Response::Transformer

Public Class Methods

instance(raw_data) click to toggle source
# File lib/gdax_client/http/product_ticker/get/response.rb, line 29
def self.instance(raw_data)
  response = Response.build
  response.data = Response::Data.build(raw_data)
  response
end
json() click to toggle source
# File lib/gdax_client/http/product_ticker/get/response.rb, line 25
def self.json
  JSON
end