Sha256: 74dfe7d050a5dcda1fbf23e0514599e12f3864a7d5f1636dcbc0ea72a89970db
Contents?: true
Size: 985 Bytes
Versions: 15
Compression:
Stored size: 985 Bytes
Contents
module BillForward class Address < MutableEntity @resource_path = BillForward::ResourcePath.new('addresses', 'address') class << self 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 def save() raise DenyMethod.new 'Save support is denied for this entity; '+ 'at the time of writing, the provided API endpoint is not functioning.'+ 'The entity can be saved through cascade only (i.e. save a related entity).' end end end
Version data entries
15 entries across 15 versions & 1 rubygems