mirror of
https://github.com/stripe/stripe-ruby.git
synced 2025-05-30 00:00:47 -04:00
30 lines
621 B
Ruby
30 lines
621 B
Ruby
module Stripe
|
|
class Invoice < APIResource
|
|
extend Stripe::APIOperations::List
|
|
include Stripe::APIOperations::Save
|
|
extend Stripe::APIOperations::Create
|
|
|
|
OBJECT_NAME = 'invoice'
|
|
|
|
def self.upcoming(params, opts={})
|
|
resp, opts = request(:get, upcoming_url, params, opts)
|
|
Util.convert_to_stripe_object(resp.data, opts)
|
|
end
|
|
|
|
def pay(opts={})
|
|
resp, opts = request(:post, pay_url, {}, opts)
|
|
initialize_from(resp.data, opts)
|
|
end
|
|
|
|
private
|
|
|
|
def self.upcoming_url
|
|
resource_url + '/upcoming'
|
|
end
|
|
|
|
def pay_url
|
|
resource_url + '/pay'
|
|
end
|
|
end
|
|
end
|