mirror of
https://github.com/stripe/stripe-ruby.git
synced 2025-10-04 00:00:47 -04:00
* Revert "Use Util.convert_to_stripe_object instead of initialize_from" This reverts commit ea736eba1b8f33d8febbf0b1be0957f34f7b04db. * Make SetupIntents use initialize_from instead of Util.convert_to_stripe_object * Fix issuing card details, which must have been broken prior to ea736eb
49 lines
1.6 KiB
Ruby
49 lines
1.6 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module Stripe
|
|
class Invoice < APIResource
|
|
extend Stripe::APIOperations::Create
|
|
include Stripe::APIOperations::Delete
|
|
extend Stripe::APIOperations::List
|
|
include Stripe::APIOperations::Save
|
|
|
|
OBJECT_NAME = "invoice".freeze
|
|
|
|
custom_method :finalize_invoice, http_verb: :post, http_path: "finalize"
|
|
custom_method :mark_uncollectible, http_verb: :post
|
|
custom_method :pay, http_verb: :post
|
|
custom_method :send_invoice, http_verb: :post, http_path: "send"
|
|
custom_method :void_invoice, http_verb: :post, http_path: "void"
|
|
|
|
def finalize_invoice(params = {}, opts = {})
|
|
resp, opts = request(:post, resource_url + "/finalize", params, opts)
|
|
initialize_from(resp.data, opts)
|
|
end
|
|
|
|
def mark_uncollectible(params = {}, opts = {})
|
|
resp, opts = request(:post, resource_url + "/mark_uncollectible", params, opts)
|
|
initialize_from(resp.data, opts)
|
|
end
|
|
|
|
def pay(params = {}, opts = {})
|
|
resp, opts = request(:post, resource_url + "/pay", params, opts)
|
|
initialize_from(resp.data, opts)
|
|
end
|
|
|
|
def send_invoice(params = {}, opts = {})
|
|
resp, opts = request(:post, resource_url + "/send", params, opts)
|
|
initialize_from(resp.data, opts)
|
|
end
|
|
|
|
def void_invoice(params = {}, opts = {})
|
|
resp, opts = request(:post, resource_url + "/void", params, opts)
|
|
initialize_from(resp.data, opts)
|
|
end
|
|
|
|
def self.upcoming(params, opts = {})
|
|
resp, opts = request(:get, resource_url + "/upcoming", params, opts)
|
|
Util.convert_to_stripe_object(resp.data, opts)
|
|
end
|
|
end
|
|
end
|