Sha256: 52b26fb62fcfae0674ccd5f7d847cc4de1fbac8b9ab7d73820114bf4a5ababe5
Contents?: true
Size: 416 Bytes
Versions: 8
Compression:
Stored size: 416 Bytes
Contents
# frozen_string_literal: true module IronBank module Resources # A taxation item represents the tax amount associated with a single invoice # item. # class TaxationItem < Resource def self.exclude_fields %w[ Balance CreditAmount PaymentAmount ] end with_schema with_one :invoice with_one :invoice_item end end end
Version data entries
8 entries across 8 versions & 1 rubygems