Sha256: bc5d2fd1aba38bd96171c0528a05ac3d198d6c5c4f86c8e2166e8a6adbb16358
Contents?: true
Size: 1.53 KB
Versions: 3
Compression:
Stored size: 1.53 KB
Contents
module ChargeBee class UnbilledCharge < Model class Tier < Model attr_accessor :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 :id, :customer_id, :subscription_id, :date_from, :date_to, :unit_amount, :pricing_model, :quantity, :amount, :currency_code, :discount_amount, :description, :entity_type, :entity_id, :is_voided, :voided_at, :unit_amount_in_decimal, :quantity_in_decimal, :amount_in_decimal, :tiers, :deleted # OPERATIONS #----------- def self.create_unbilled_charge(params, env=nil, headers={}) Request.send('post', uri_path("unbilled_charges","create"), params, env, headers) end def self.create(params, env=nil, headers={}) Request.send('post', uri_path("unbilled_charges"), params, env, headers) end def self.invoice_unbilled_charges(params={}, env=nil, headers={}) Request.send('post', uri_path("unbilled_charges","invoice_unbilled_charges"), params, env, headers) end def self.delete(id, env=nil, headers={}) Request.send('post', uri_path("unbilled_charges",id.to_s,"delete"), {}, env, headers) end def self.list(params={}, env=nil, headers={}) Request.send_list_request('get', uri_path("unbilled_charges"), params, env, headers) end def self.invoice_now_estimate(params={}, env=nil, headers={}) Request.send('post', uri_path("unbilled_charges","invoice_now_estimate"), params, env, headers) end end # ~UnbilledCharge end # ~ChargeBee
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
chargebee-2.17.0 | lib/chargebee/models/unbilled_charge.rb |
chargebee-2.16.0 | lib/chargebee/models/unbilled_charge.rb |
chargebee-2.15.0 | lib/chargebee/models/unbilled_charge.rb |