Sha256: aa0a8c6b1a22cfd01c7727d513b445f4ce68dc61db19beccaf7c0f90d9b07d7a
Contents?: true
Size: 250 Bytes
Versions: 1
Compression:
Stored size: 250 Bytes
Contents
module Einvoice class Result attr_reader :response def initialize(response = nil) @response = response end def errors response.errors unless success? end def success? response.success? end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
einvoice-0.2.0 | lib/einvoice/result.rb |