class Fakturan::Invoice

Public Instance Methods

address=(attrs_or_obj) click to toggle source
Calls superclass method
# File lib/fakturan_nu/invoice.rb, line 24
def address=(attrs_or_obj)
  if attrs_or_obj.respond_to?(:each)
    send(:address_attributes=, attrs_or_obj)
  else
    super
  end
end
client=(attrs_or_obj) click to toggle source
Calls superclass method
# File lib/fakturan_nu/invoice.rb, line 32
def client=(attrs_or_obj)
  if attrs_or_obj.respond_to?(:each)
    send(:client_attributes=, attrs_or_obj)
  else
    super
  end
end
rows=(attrs_or_obj_array) click to toggle source
Calls superclass method
# File lib/fakturan_nu/invoice.rb, line 16
def rows=(attrs_or_obj_array)
  if attrs_or_obj_array.first.respond_to?(:each)
    send(:rows_attributes=, attrs_or_obj_array)
  else
    super
  end
end