Sha256: 7e2038db5569d3e148866e48e26004d484b095674574c59bb20f999daf3f02e2
Contents?: true
Size: 548 Bytes
Versions: 7
Compression:
Stored size: 548 Bytes
Contents
module ChargeBee class InAppSubscription < Model attr_accessor :app_id, :subscription_id, :customer_id, :plan_id # OPERATIONS #----------- def self.process_receipt(id, params, env=nil, headers={}) Request.send('post', uri_path("in_app_subscriptions",id.to_s,"process_purchase_command"), params, env, headers) end def self.import_receipt(id, params, env=nil, headers={}) Request.send('post', uri_path("in_app_subscriptions",id.to_s,"import_receipt"), params, env, headers) end end # ~InAppSubscription end # ~ChargeBee
Version data entries
7 entries across 7 versions & 1 rubygems