Sha256: 69c94a92819e9e3cc9fa5df14871513cd914d2ace167b8f33b5f19952eb1544b
Contents?: true
Size: 1.67 KB
Versions: 2
Compression:
Stored size: 1.67 KB
Contents
module ChargeBee class CreditNoteEstimate < Model class LineItem < Model attr_accessor :id, :subscription_id, :date_from, :date_to, :unit_amount, :quantity, :amount, :pricing_model, :is_taxed, :tax_amount, :tax_rate, :unit_amount_in_decimal, :quantity_in_decimal, :amount_in_decimal, :discount_amount, :item_level_discount_amount, :reference_line_item_id, :description, :entity_description, :entity_type, :tax_exempt_reason, :entity_id, :customer_id end class Discount < Model attr_accessor :amount, :description, :entity_type, :entity_id, :coupon_set_code end class Tax < Model attr_accessor :name, :amount, :description end class LineItemTax < Model attr_accessor :line_item_id, :tax_name, :tax_rate, :date_to, :date_from, :prorated_taxable_amount, :is_partial_tax_applied, :is_non_compliance_tax, :taxable_amount, :tax_amount, :tax_juris_type, :tax_juris_name, :tax_juris_code, :tax_amount_in_local_currency, :local_currency_code end class LineItemDiscount < Model attr_accessor :line_item_id, :discount_type, :coupon_id, :entity_id, :discount_amount end class LineItemTier < Model attr_accessor :line_item_id, :starting_unit, :ending_unit, :quantity_used, :unit_amount, :starting_unit_in_decimal, :ending_unit_in_decimal, :quantity_used_in_decimal, :unit_amount_in_decimal 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, :line_item_tiers, :round_off_amount, :customer_id # OPERATIONS #----------- end # ~CreditNoteEstimate end # ~ChargeBee
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
chargebee-2.35.0 | lib/chargebee/models/credit_note_estimate.rb |
chargebee-2.34.0 | lib/chargebee/models/credit_note_estimate.rb |