class Recharge::Charge

Constants

COLLECTION
PATH
SINGLE

Public Class Methods

change_next_charge_date(id, date) click to toggle source
# File lib/recharge/classes.rb, line 432
def self.change_next_charge_date(id, date)
  path = join(id, "change_next_charge_date")
  instance(POST(path, :next_charge_date => date_param(date)))
end
list(options = nil) click to toggle source
Calls superclass method
# File lib/recharge/classes.rb, line 428
def self.list(options = nil)
  super(convert_date_params(options, :date_min, :date_max))
end
skip(id, subscription_id) click to toggle source
# File lib/recharge/classes.rb, line 437
def self.skip(id, subscription_id)
  path = join(id, "skip")
  instance(POST(path, :subscription_id => subscription_id))
end