class Revolut::Api::Public::Client

Public Class Methods

new(host: "www.revolut.com") click to toggle source
Calls superclass method Revolut::Api::Base::new
# File lib/revolut/api/public/client.rb, line 6
def initialize(host: "www.revolut.com")
  super(host: host)
end

Public Instance Methods

quotes(from: [], to: [], endpoint: "api/quote/internal") click to toggle source
Calls superclass method Revolut::Api::Base#quotes
# File lib/revolut/api/public/client.rb, line 10
def quotes(from: [], to: [], endpoint: "api/quote/internal")
  options     =   {
    user_agent:           ::Revolut::Api::Constants::PUBLIC_USER_AGENT,
    authenticate:         false,
    check_configuration:  false
  }
  
  super(from: from, to: to, endpoint: endpoint, options: options)
end