Sha256: 31435677ec7e73bc880e29c57ae62d3ced5289d0ca3b3ae30e45a10f084ee91b
Contents?: true
Size: 1.05 KB
Versions: 25
Compression:
Stored size: 1.05 KB
Contents
module ChargeBee class CreditNoteEstimate < Model class LineItem < Model attr_accessor :id, :subscription_id, :date_from, :date_to, :unit_amount, :quantity, :is_taxed, :tax_amount, :tax_rate, :amount, :discount_amount, :item_level_discount_amount, :description, :entity_type, :tax_exempt_reason, :entity_id end class Discount < Model attr_accessor :amount, :description, :entity_type, :entity_id end class Tax < Model attr_accessor :name, :amount, :description end class LineItemTax < Model attr_accessor :line_item_id, :tax_name, :tax_rate, :tax_amount, :tax_juris_type, :tax_juris_name, :tax_juris_code end class LineItemDiscount < Model attr_accessor :line_item_id, :discount_type, :coupon_id, :discount_amount end attr_accessor :reference_invoice_id, :type, :price_type, :currency_code, :sub_total, :total, :amount_allocated, :amount_available, :line_items, :discounts, :taxes, :line_item_taxes, :line_item_discounts # OPERATIONS #----------- end # ~CreditNoteEstimate end # ~ChargeBee
Version data entries
25 entries across 25 versions & 1 rubygems