Sha256: 8265ba1b18a161a1ce9f37f9084d0f7cd62779e397c00066a752cbe276bd2d77
Contents?: true
Size: 943 Bytes
Versions: 15
Compression:
Stored size: 943 Bytes
Contents
module BillForward class TaxLine < InsertableEntity class << self def create(entity = nil) raise DenyMethod.new 'Create support is denied for this entity; '+ 'at the time of writing, no API endpoint exists to support it. '+ 'The entity can be created through cascade only (i.e. instantiated within another entity).' end def get_by_id(id, query_params = {}, customClient = nil) raise DenyMethod.new 'Get by ID support is denied for this entity; '+ 'at the time of writing, no API endpoint exists to support it.'+ 'The entity can be GETted through cascade only (i.e. GET a related entity).' end def get_all(query_params = {}, customClient = nil) raise DenyMethod.new 'Get All support is denied for this entity; '+ 'at the time of writing, no API endpoint exists to support it.'+ 'The entity can be GETted through cascade only (i.e. GET a related entity).' end end end end
Version data entries
15 entries across 15 versions & 1 rubygems