class BillForward::GenericEntity

Public Class Methods

create(entity = nil) click to toggle source
# File lib/bill_forward/entities/generic_entity.rb, line 4
 def create(entity = nil)
        raise DenyMethod.new 'Create support is denied for this entity; '+
       'it is just a payload wrapper, and is thus not a real entity in BillForward.'
end
get_all(query_params = {}, customClient = nil) click to toggle source
# File lib/bill_forward/entities/generic_entity.rb, line 14
def get_all(query_params = {}, customClient = nil)
        raise DenyMethod.new 'Get All support is denied for this entity; '+
          'it is just a payload wrapper, and is thus not a real entity in BillForward.'
end
get_by_id(id, query_params = {}, customClient = nil) click to toggle source
# File lib/bill_forward/entities/generic_entity.rb, line 9
def get_by_id(id, query_params = {}, customClient = nil)
        raise DenyMethod.new 'Get by ID support is denied for this entity; '+
          'it is just a payload wrapper, and is thus not a real entity in BillForward.'
end

Public Instance Methods

save() click to toggle source
# File lib/bill_forward/entities/generic_entity.rb, line 20
def save()
        raise DenyMethod.new 'Save support is denied for this entity; '+
         'it is just a payload wrapper, and is thus not a real entity in BillForward.'
end