class Kounta::Customer

Public Instance Methods

name() click to toggle source
# File lib/kounta/customer.rb, line 29
def name
  "#{first_name} #{last_name}"
end
resource_path() click to toggle source
# File lib/kounta/customer.rb, line 33
def resource_path
  { companies: company_id, customers: id }
end