class FastBound::Account

Constants

ENDPOINTS

Public Class Methods

new(client) click to toggle source
# File lib/fastbound-ruby/account.rb, line 12
def initialize(client)
  @client = client
end

Public Instance Methods

fetch() click to toggle source
# File lib/fastbound-ruby/account.rb, line 16
def fetch
  endpoint = ENDPOINTS[:fetch]

  get_request(@client, endpoint)
end