Sha256: 3ab9cf84aa60f49140b2dea3d91afc40cf4082e4d93c8ea627c1d1bb2c9dbdbe
Contents?: true
Size: 528 Bytes
Versions: 22
Compression:
Stored size: 528 Bytes
Contents
module Einvoice class Result attr_reader :response def initialize(response = nil) @response = response end def errors raise NotImplementedError, 'You must initialize one of Einvoice::Response subclasses then use it.' end def successful? raise NotImplementedError, 'You must initialize one of Einvoice::Response subclasses then use it.' end def data raise NotImplementedError, 'You must initialize one of Einvoice::Response subclasses then use it.' end end end
Version data entries
22 entries across 22 versions & 1 rubygems