class Invoicer::Freshbooks
Attributes
freshbooks[R]
invoices[R]
Public Class Methods
new(subdomain, api_key)
click to toggle source
# File lib/services/freshbooks.rb, line 9 def initialize(subdomain, api_key) @freshbooks = ::FreshBooks::Client.new("#{ subdomain }.freshbooks.com", api_key) @invoices = Invoicer::FreshbooksInvoiceManager.new(self) end