class Fakturan::Account

Public Instance Methods

setting=(attrs_or_obj) click to toggle source
Calls superclass method
# File lib/fakturan_nu/account.rb, line 19
def setting=(attrs_or_obj)
  if attrs_or_obj.respond_to?(:each)
    send(:setting_attributes=, attrs_or_obj)
  else
    super
  end
end
users=(attrs_or_obj_array) click to toggle source
Calls superclass method
# File lib/fakturan_nu/account.rb, line 11
def users=(attrs_or_obj_array)
  if attrs_or_obj_array.first.respond_to?(:each)
    send(:users_attributes=, attrs_or_obj_array)
  else
    super
  end
end