stripe 6.0.0 → 7.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (69) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +60 -2
  3. data/Makefile +1 -1
  4. data/OPENAPI_VERSION +1 -0
  5. data/README.md +1 -1
  6. data/VERSION +1 -1
  7. data/lib/data/ca-certificates.crt +1241 -1937
  8. data/lib/stripe/api_operations/create.rb +6 -2
  9. data/lib/stripe/api_operations/delete.rb +12 -7
  10. data/lib/stripe/api_operations/list.rb +6 -9
  11. data/lib/stripe/api_operations/nested_resource.rb +62 -34
  12. data/lib/stripe/api_operations/request.rb +10 -0
  13. data/lib/stripe/api_operations/save.rb +6 -3
  14. data/lib/stripe/api_operations/search.rb +6 -9
  15. data/lib/stripe/api_resource.rb +1 -1
  16. data/lib/stripe/api_resource_test_helpers.rb +2 -0
  17. data/lib/stripe/api_version.rb +8 -0
  18. data/lib/stripe/object_types.rb +11 -7
  19. data/lib/stripe/resources/account.rb +28 -8
  20. data/lib/stripe/resources/apps/secret.rb +31 -0
  21. data/lib/stripe/resources/card.rb +1 -3
  22. data/lib/stripe/resources/charge.rb +10 -3
  23. data/lib/stripe/resources/checkout/session.rb +27 -5
  24. data/lib/stripe/resources/credit_note.rb +24 -9
  25. data/lib/stripe/resources/customer.rb +104 -19
  26. data/lib/stripe/resources/dispute.rb +10 -3
  27. data/lib/stripe/resources/financial_connections/account.rb +40 -5
  28. data/lib/stripe/resources/identity/verification_session.rb +20 -5
  29. data/lib/stripe/resources/invoice.rb +64 -17
  30. data/lib/stripe/resources/issuing/authorization.rb +20 -5
  31. data/lib/stripe/resources/issuing/card.rb +78 -9
  32. data/lib/stripe/resources/issuing/dispute.rb +10 -3
  33. data/lib/stripe/resources/order.rb +40 -9
  34. data/lib/stripe/resources/payment_intent.rb +60 -13
  35. data/lib/stripe/resources/payment_link.rb +10 -3
  36. data/lib/stripe/resources/payment_method.rb +20 -5
  37. data/lib/stripe/resources/payout.rb +20 -5
  38. data/lib/stripe/resources/quote.rb +50 -11
  39. data/lib/stripe/resources/refund.rb +19 -5
  40. data/lib/stripe/resources/reporting/report_type.rb +0 -1
  41. data/lib/stripe/resources/review.rb +10 -3
  42. data/lib/stripe/resources/setup_intent.rb +30 -7
  43. data/lib/stripe/resources/source.rb +16 -6
  44. data/lib/stripe/resources/subscription.rb +52 -3
  45. data/lib/stripe/resources/subscription_item.rb +0 -7
  46. data/lib/stripe/resources/subscription_schedule.rb +20 -5
  47. data/lib/stripe/resources/terminal/reader.rb +49 -11
  48. data/lib/stripe/resources/test_helpers/test_clock.rb +10 -3
  49. data/lib/stripe/resources/topup.rb +10 -3
  50. data/lib/stripe/resources/transfer.rb +0 -11
  51. data/lib/stripe/resources/treasury/credit_reversal.rb +13 -0
  52. data/lib/stripe/resources/treasury/debit_reversal.rb +13 -0
  53. data/lib/stripe/resources/treasury/financial_account.rb +50 -0
  54. data/lib/stripe/resources/treasury/inbound_transfer.rb +93 -0
  55. data/lib/stripe/resources/treasury/outbound_payment.rb +93 -0
  56. data/lib/stripe/resources/treasury/outbound_transfer.rb +97 -0
  57. data/lib/stripe/resources/treasury/received_credit.rb +29 -0
  58. data/lib/stripe/resources/treasury/received_debit.rb +29 -0
  59. data/lib/stripe/resources/treasury/transaction.rb +12 -0
  60. data/lib/stripe/resources/treasury/transaction_entry.rb +16 -0
  61. data/lib/stripe/resources.rb +11 -7
  62. data/lib/stripe/util.rb +38 -3
  63. data/lib/stripe/version.rb +1 -1
  64. metadata +16 -8
  65. data/lib/stripe/resources/bitcoin_receiver.rb +0 -24
  66. data/lib/stripe/resources/bitcoin_transaction.rb +0 -16
  67. data/lib/stripe/resources/issuing/card_details.rb +0 -10
  68. data/lib/stripe/resources/recipient.rb +0 -14
  69. data/lib/stripe/resources/three_d_secure.rb +0 -14
@@ -4,8 +4,12 @@ module Stripe
4
4
  module APIOperations
5
5
  module Create
6
6
  def create(params = {}, opts = {})
7
- resp, opts = execute_resource_request(:post, resource_url, params, opts)
8
- Util.convert_to_stripe_object(resp.data, opts)
7
+ request_stripe_object(
8
+ method: :post,
9
+ path: resource_url,
10
+ params: params,
11
+ opts: opts
12
+ )
9
13
  end
10
14
  end
11
15
  end
@@ -18,17 +18,22 @@ module Stripe
18
18
  # api_key to be overwritten. See
19
19
  # {APIOperations::Request.execute_resource_request}.
20
20
  def delete(id, params = {}, opts = {})
21
- resp, opts = execute_resource_request(:delete,
22
- "#{resource_url}/#{id}",
23
- params, opts)
24
- Util.convert_to_stripe_object(resp.data, opts)
21
+ request_stripe_object(
22
+ method: :delete,
23
+ path: "#{resource_url}/#{id}",
24
+ params: params,
25
+ opts: opts
26
+ )
25
27
  end
26
28
  end
27
29
 
28
30
  def delete(params = {}, opts = {})
29
- resp, opts = execute_resource_request(:delete, resource_url,
30
- params, opts)
31
- initialize_from(resp.data, opts)
31
+ request_stripe_object(
32
+ method: :delete,
33
+ path: resource_url,
34
+ params: params,
35
+ opts: opts
36
+ )
32
37
  end
33
38
 
34
39
  def self.included(base)
@@ -4,15 +4,12 @@ module Stripe
4
4
  module APIOperations
5
5
  module List
6
6
  def list(filters = {}, opts = {})
7
- opts = Util.normalize_opts(opts)
8
-
9
- resp, opts = execute_resource_request(:get, resource_url, filters, opts)
10
- obj = ListObject.construct_from(resp.data, opts)
11
-
12
- # set filters so that we can fetch the same limit, expansions, and
13
- # predicates when accessing the next and previous pages
14
- obj.filters = filters.dup
15
- obj
7
+ request_stripe_object(
8
+ method: :get,
9
+ path: resource_url,
10
+ params: filters,
11
+ opts: opts
12
+ )
16
13
  end
17
14
  end
18
15
  end
@@ -26,46 +26,74 @@ module Stripe
26
26
  end
27
27
 
28
28
  operations.each do |operation|
29
- case operation
30
- when :create
31
- define_singleton_method(:"create_#{resource}") \
29
+ define_operation(
30
+ resource,
31
+ operation,
32
+ resource_url_method,
33
+ resource_plural
34
+ )
35
+ end
36
+ end
37
+
38
+ private def define_operation(
39
+ resource,
40
+ operation,
41
+ resource_url_method,
42
+ resource_plural
43
+ )
44
+ case operation
45
+ when :create
46
+ define_singleton_method(:"create_#{resource}") \
32
47
  do |id, params = {}, opts = {}|
33
- url = send(resource_url_method, id)
34
- resp, opts = execute_resource_request(:post, url, params, opts)
35
- Util.convert_to_stripe_object(resp.data, opts)
36
- end
37
- when :retrieve
38
- define_singleton_method(:"retrieve_#{resource}") \
48
+ request_stripe_object(
49
+ method: :post,
50
+ path: send(resource_url_method, id),
51
+ params: params,
52
+ opts: opts
53
+ )
54
+ end
55
+ when :retrieve
56
+ define_singleton_method(:"retrieve_#{resource}") \
39
57
  do |id, nested_id, opts = {}|
40
- url = send(resource_url_method, id, nested_id)
41
- resp, opts = execute_resource_request(:get, url, {}, opts)
42
- Util.convert_to_stripe_object(resp.data, opts)
43
- end
44
- when :update
45
- define_singleton_method(:"update_#{resource}") \
58
+ request_stripe_object(
59
+ method: :get,
60
+ path: send(resource_url_method, id, nested_id),
61
+ params: {},
62
+ opts: opts
63
+ )
64
+ end
65
+ when :update
66
+ define_singleton_method(:"update_#{resource}") \
46
67
  do |id, nested_id, params = {}, opts = {}|
47
- url = send(resource_url_method, id, nested_id)
48
- resp, opts = execute_resource_request(:post, url, params, opts)
49
- Util.convert_to_stripe_object(resp.data, opts)
50
- end
51
- when :delete
52
- define_singleton_method(:"delete_#{resource}") \
68
+ request_stripe_object(
69
+ method: :post,
70
+ path: send(resource_url_method, id, nested_id),
71
+ params: params,
72
+ opts: opts
73
+ )
74
+ end
75
+ when :delete
76
+ define_singleton_method(:"delete_#{resource}") \
53
77
  do |id, nested_id, params = {}, opts = {}|
54
- url = send(resource_url_method, id, nested_id)
55
- resp, opts = execute_resource_request(:delete, url, params,
56
- opts)
57
- Util.convert_to_stripe_object(resp.data, opts)
58
- end
59
- when :list
60
- define_singleton_method(:"list_#{resource_plural}") \
78
+ request_stripe_object(
79
+ method: :delete,
80
+ path: send(resource_url_method, id, nested_id),
81
+ params: params,
82
+ opts: opts
83
+ )
84
+ end
85
+ when :list
86
+ define_singleton_method(:"list_#{resource_plural}") \
61
87
  do |id, params = {}, opts = {}|
62
- url = send(resource_url_method, id)
63
- resp, opts = execute_resource_request(:get, url, params, opts)
64
- Util.convert_to_stripe_object(resp.data, opts)
65
- end
66
- else
67
- raise ArgumentError, "Unknown operation: #{operation.inspect}"
88
+ request_stripe_object(
89
+ method: :get,
90
+ path: send(resource_url_method, id),
91
+ params: params,
92
+ opts: opts
93
+ )
68
94
  end
95
+ else
96
+ raise ArgumentError, "Unknown operation: #{operation.inspect}"
69
97
  end
70
98
  end
71
99
  end
@@ -24,6 +24,11 @@ module Stripe
24
24
  )
25
25
  end
26
26
 
27
+ private def request_stripe_object(method:, path:, params:, opts: {})
28
+ resp, opts = execute_resource_request(method, path, params, opts)
29
+ Util.convert_to_stripe_object_with_params(resp.data, params, opts)
30
+ end
31
+
27
32
  private def execute_resource_request_internal(client_request_method_sym,
28
33
  method, url,
29
34
  params, opts,
@@ -122,6 +127,11 @@ module Stripe
122
127
  )
123
128
  end
124
129
 
130
+ private def request_stripe_object(method:, path:, params:, opts: {})
131
+ resp, opts = execute_resource_request(method, path, params, opts)
132
+ Util.convert_to_stripe_object_with_params(resp.data, params, opts)
133
+ end
134
+
125
135
  # See notes on `alias` above.
126
136
  alias request execute_resource_request
127
137
  end
@@ -24,9 +24,12 @@ module Stripe
24
24
  end
25
25
  end
26
26
 
27
- resp, opts = execute_resource_request(:post, "#{resource_url}/#{id}",
28
- params, opts)
29
- Util.convert_to_stripe_object(resp.data, opts)
27
+ request_stripe_object(
28
+ method: :post,
29
+ path: "#{resource_url}/#{id}",
30
+ params: params,
31
+ opts: opts
32
+ )
30
33
  end
31
34
  end
32
35
 
@@ -4,15 +4,12 @@ module Stripe
4
4
  module APIOperations
5
5
  module Search
6
6
  def _search(search_url, filters = {}, opts = {})
7
- opts = Util.normalize_opts(opts)
8
-
9
- resp, opts = execute_resource_request(:get, search_url, filters, opts)
10
- obj = SearchResultObject.construct_from(resp.data, opts)
11
-
12
- # set filters so that we can fetch the same limit and query
13
- # when accessing the next page
14
- obj.filters = filters.dup
15
- obj
7
+ request_stripe_object(
8
+ method: :get,
9
+ path: search_url,
10
+ params: filters,
11
+ opts: opts
12
+ )
16
13
  end
17
14
  end
18
15
  end
@@ -97,7 +97,7 @@ module Stripe
97
97
  if Util.object_name_matches_class?(resp.data[:object], self.class)
98
98
  initialize_from(resp.data, opts)
99
99
  else
100
- Util.convert_to_stripe_object(resp.data, opts)
100
+ Util.convert_to_stripe_object_with_params(resp.data, params, opts)
101
101
  end
102
102
  end
103
103
 
@@ -8,6 +8,8 @@ module Stripe
8
8
  # class MyAPIResource < APIResource
9
9
  # class TestHelpers < APIResourceTestHelpers
10
10
  class APIResourceTestHelpers
11
+ include Stripe::APIOperations::Request
12
+
11
13
  def initialize(resource)
12
14
  @resource = resource
13
15
  end
@@ -0,0 +1,8 @@
1
+ # File generated from our OpenAPI spec
2
+ # frozen_string_literal: true
3
+
4
+ module Stripe
5
+ module ApiVersion
6
+ CURRENT = "2022-08-01"
7
+ end
8
+ end
@@ -14,17 +14,15 @@ module Stripe
14
14
  # business objects
15
15
  Account::OBJECT_NAME => Account,
16
16
  AccountLink::OBJECT_NAME => AccountLink,
17
- AlipayAccount::OBJECT_NAME => AlipayAccount,
18
17
  ApplePayDomain::OBJECT_NAME => ApplePayDomain,
19
18
  ApplicationFee::OBJECT_NAME => ApplicationFee,
20
19
  ApplicationFeeRefund::OBJECT_NAME => ApplicationFeeRefund,
20
+ Apps::Secret::OBJECT_NAME => Apps::Secret,
21
21
  Balance::OBJECT_NAME => Balance,
22
22
  BalanceTransaction::OBJECT_NAME => BalanceTransaction,
23
23
  BankAccount::OBJECT_NAME => BankAccount,
24
24
  BillingPortal::Configuration::OBJECT_NAME => BillingPortal::Configuration,
25
25
  BillingPortal::Session::OBJECT_NAME => BillingPortal::Session,
26
- BitcoinReceiver::OBJECT_NAME => BitcoinReceiver,
27
- BitcoinTransaction::OBJECT_NAME => BitcoinTransaction,
28
26
  Capability::OBJECT_NAME => Capability,
29
27
  Card::OBJECT_NAME => Card,
30
28
  CashBalance::OBJECT_NAME => CashBalance,
@@ -57,7 +55,6 @@ module Stripe
57
55
  InvoiceLineItem::OBJECT_NAME => InvoiceLineItem,
58
56
  Issuing::Authorization::OBJECT_NAME => Issuing::Authorization,
59
57
  Issuing::Card::OBJECT_NAME => Issuing::Card,
60
- Issuing::CardDetails::OBJECT_NAME => Issuing::CardDetails,
61
58
  Issuing::Cardholder::OBJECT_NAME => Issuing::Cardholder,
62
59
  Issuing::Dispute::OBJECT_NAME => Issuing::Dispute,
63
60
  Issuing::Transaction::OBJECT_NAME => Issuing::Transaction,
@@ -78,8 +75,6 @@ module Stripe
78
75
  Radar::EarlyFraudWarning::OBJECT_NAME => Radar::EarlyFraudWarning,
79
76
  Radar::ValueList::OBJECT_NAME => Radar::ValueList,
80
77
  Radar::ValueListItem::OBJECT_NAME => Radar::ValueListItem,
81
- Recipient::OBJECT_NAME => Recipient,
82
- RecipientTransfer::OBJECT_NAME => RecipientTransfer,
83
78
  Refund::OBJECT_NAME => Refund,
84
79
  Reporting::ReportRun::OBJECT_NAME => Reporting::ReportRun,
85
80
  Reporting::ReportType::OBJECT_NAME => Reporting::ReportType,
@@ -103,10 +98,19 @@ module Stripe
103
98
  Terminal::Location::OBJECT_NAME => Terminal::Location,
104
99
  Terminal::Reader::OBJECT_NAME => Terminal::Reader,
105
100
  TestHelpers::TestClock::OBJECT_NAME => TestHelpers::TestClock,
106
- ThreeDSecure::OBJECT_NAME => ThreeDSecure,
107
101
  Token::OBJECT_NAME => Token,
108
102
  Topup::OBJECT_NAME => Topup,
109
103
  Transfer::OBJECT_NAME => Transfer,
104
+ Treasury::CreditReversal::OBJECT_NAME => Treasury::CreditReversal,
105
+ Treasury::DebitReversal::OBJECT_NAME => Treasury::DebitReversal,
106
+ Treasury::FinancialAccount::OBJECT_NAME => Treasury::FinancialAccount,
107
+ Treasury::InboundTransfer::OBJECT_NAME => Treasury::InboundTransfer,
108
+ Treasury::OutboundPayment::OBJECT_NAME => Treasury::OutboundPayment,
109
+ Treasury::OutboundTransfer::OBJECT_NAME => Treasury::OutboundTransfer,
110
+ Treasury::ReceivedCredit::OBJECT_NAME => Treasury::ReceivedCredit,
111
+ Treasury::ReceivedDebit::OBJECT_NAME => Treasury::ReceivedDebit,
112
+ Treasury::Transaction::OBJECT_NAME => Treasury::Transaction,
113
+ Treasury::TransactionEntry::OBJECT_NAME => Treasury::TransactionEntry,
110
114
  UsageRecord::OBJECT_NAME => UsageRecord,
111
115
  UsageRecordSummary::OBJECT_NAME => UsageRecordSummary,
112
116
  WebhookEndpoint::OBJECT_NAME => WebhookEndpoint,
@@ -12,18 +12,43 @@ module Stripe
12
12
 
13
13
  OBJECT_NAME = "account"
14
14
 
15
- custom_method :reject, http_verb: :post
16
-
17
15
  nested_resource_class_methods :capability,
18
16
  operations: %i[retrieve update list],
19
17
  resource_plural: "capabilities"
20
18
  nested_resource_class_methods :person,
21
19
  operations: %i[create retrieve update delete list]
22
20
 
21
+ def persons(params = {}, opts = {})
22
+ request_stripe_object(
23
+ method: :get,
24
+ path: format("/v1/accounts/%<account>s/persons", { account: CGI.escape(self["id"]) }),
25
+ params: params,
26
+ opts: opts
27
+ )
28
+ end
29
+
23
30
  def reject(params = {}, opts = {})
24
31
  request_stripe_object(
25
32
  method: :post,
26
- path: resource_url + "/reject",
33
+ path: format("/v1/accounts/%<account>s/reject", { account: CGI.escape(self["id"]) }),
34
+ params: params,
35
+ opts: opts
36
+ )
37
+ end
38
+
39
+ def self.persons(account, params = {}, opts = {})
40
+ request_stripe_object(
41
+ method: :get,
42
+ path: format("/v1/accounts/%<account>s/persons", { account: CGI.escape(account) }),
43
+ params: params,
44
+ opts: opts
45
+ )
46
+ end
47
+
48
+ def self.reject(account, params = {}, opts = {})
49
+ request_stripe_object(
50
+ method: :post,
51
+ path: format("/v1/accounts/%<account>s/reject", { account: CGI.escape(account) }),
27
52
  params: params,
28
53
  opts: opts
29
54
  )
@@ -60,11 +85,6 @@ module Stripe
60
85
  super(id, opts)
61
86
  end
62
87
 
63
- def persons(params = {}, opts = {})
64
- resp, opts = execute_resource_request(:get, resource_url + "/persons", params, opts)
65
- Util.convert_to_stripe_object(resp.data, opts)
66
- end
67
-
68
88
  # We are not adding a helper for capabilities here as the Account object
69
89
  # already has a capabilities property which is a hash and not the sub-list
70
90
  # of capabilities.
@@ -0,0 +1,31 @@
1
+ # File generated from our OpenAPI spec
2
+ # frozen_string_literal: true
3
+
4
+ module Stripe
5
+ module Apps
6
+ class Secret < APIResource
7
+ extend Stripe::APIOperations::Create
8
+ extend Stripe::APIOperations::List
9
+
10
+ OBJECT_NAME = "apps.secret"
11
+
12
+ def self.delete_where(params = {}, opts = {})
13
+ request_stripe_object(
14
+ method: :post,
15
+ path: "/v1/apps/secrets/delete",
16
+ params: params,
17
+ opts: opts
18
+ )
19
+ end
20
+
21
+ def self.find(params = {}, opts = {})
22
+ request_stripe_object(
23
+ method: :get,
24
+ path: "/v1/apps/secrets/find",
25
+ params: params,
26
+ opts: opts
27
+ )
28
+ end
29
+ end
30
+ end
31
+ end
@@ -10,9 +10,7 @@ module Stripe
10
10
  OBJECT_NAME = "card"
11
11
 
12
12
  def resource_url
13
- if respond_to?(:recipient) && !recipient.nil? && !recipient.empty?
14
- "#{Recipient.resource_url}/#{CGI.escape(recipient)}/cards/#{CGI.escape(id)}"
15
- elsif respond_to?(:customer) && !customer.nil? && !customer.empty?
13
+ if respond_to?(:customer) && !customer.nil? && !customer.empty?
16
14
  "#{Customer.resource_url}/#{CGI.escape(customer)}/sources/#{CGI.escape(id)}"
17
15
  elsif respond_to?(:account) && !account.nil? && !account.empty?
18
16
  "#{Account.resource_url}/#{CGI.escape(account)}/external_accounts/#{CGI.escape(id)}"
@@ -10,12 +10,19 @@ module Stripe
10
10
 
11
11
  OBJECT_NAME = "charge"
12
12
 
13
- custom_method :capture, http_verb: :post
14
-
15
13
  def capture(params = {}, opts = {})
16
14
  request_stripe_object(
17
15
  method: :post,
18
- path: resource_url + "/capture",
16
+ path: format("/v1/charges/%<charge>s/capture", { charge: CGI.escape(self["id"]) }),
17
+ params: params,
18
+ opts: opts
19
+ )
20
+ end
21
+
22
+ def self.capture(charge, params = {}, opts = {})
23
+ request_stripe_object(
24
+ method: :post,
25
+ path: format("/v1/charges/%<charge>s/capture", { charge: CGI.escape(charge) }),
19
26
  params: params,
20
27
  opts: opts
21
28
  )
@@ -6,18 +6,40 @@ module Stripe
6
6
  class Session < APIResource
7
7
  extend Stripe::APIOperations::Create
8
8
  extend Stripe::APIOperations::List
9
- extend Stripe::APIOperations::NestedResource
10
9
 
11
10
  OBJECT_NAME = "checkout.session"
12
11
 
13
- custom_method :expire, http_verb: :post
12
+ def expire(params = {}, opts = {})
13
+ request_stripe_object(
14
+ method: :post,
15
+ path: format("/v1/checkout/sessions/%<session>s/expire", { session: CGI.escape(self["id"]) }),
16
+ params: params,
17
+ opts: opts
18
+ )
19
+ end
14
20
 
15
- nested_resource_class_methods :line_item, operations: %i[list]
21
+ def list_line_items(params = {}, opts = {})
22
+ request_stripe_object(
23
+ method: :get,
24
+ path: format("/v1/checkout/sessions/%<session>s/line_items", { session: CGI.escape(self["id"]) }),
25
+ params: params,
26
+ opts: opts
27
+ )
28
+ end
16
29
 
17
- def expire(params = {}, opts = {})
30
+ def self.expire(session, params = {}, opts = {})
18
31
  request_stripe_object(
19
32
  method: :post,
20
- path: resource_url + "/expire",
33
+ path: format("/v1/checkout/sessions/%<session>s/expire", { session: CGI.escape(session) }),
34
+ params: params,
35
+ opts: opts
36
+ )
37
+ end
38
+
39
+ def self.list_line_items(session, params = {}, opts = {})
40
+ request_stripe_object(
41
+ method: :get,
42
+ path: format("/v1/checkout/sessions/%<session>s/line_items", { session: CGI.escape(session) }),
21
43
  params: params,
22
44
  opts: opts
23
45
  )
@@ -9,25 +9,40 @@ module Stripe
9
9
 
10
10
  OBJECT_NAME = "credit_note"
11
11
 
12
- custom_method :void_credit_note, http_verb: :post, http_path: "void"
13
-
14
12
  def void_credit_note(params = {}, opts = {})
15
13
  request_stripe_object(
16
14
  method: :post,
17
- path: resource_url + "/void",
15
+ path: format("/v1/credit_notes/%<id>s/void", { id: CGI.escape(self["id"]) }),
16
+ params: params,
17
+ opts: opts
18
+ )
19
+ end
20
+
21
+ def self.list_preview_line_items(params = {}, opts = {})
22
+ request_stripe_object(
23
+ method: :get,
24
+ path: "/v1/credit_notes/preview/lines",
18
25
  params: params,
19
26
  opts: opts
20
27
  )
21
28
  end
22
29
 
23
- def self.preview(params, opts = {})
24
- resp, opts = execute_resource_request(:get, resource_url + "/preview", params, opts)
25
- Util.convert_to_stripe_object(resp.data, opts)
30
+ def self.preview(params = {}, opts = {})
31
+ request_stripe_object(
32
+ method: :get,
33
+ path: "/v1/credit_notes/preview",
34
+ params: params,
35
+ opts: opts
36
+ )
26
37
  end
27
38
 
28
- def self.list_preview_line_items(params, opts = {})
29
- resp, opts = execute_resource_request(:get, resource_url + "/preview/lines", params, opts)
30
- Util.convert_to_stripe_object(resp.data, opts)
39
+ def self.void_credit_note(id, params = {}, opts = {})
40
+ request_stripe_object(
41
+ method: :post,
42
+ path: format("/v1/credit_notes/%<id>s/void", { id: CGI.escape(id) }),
43
+ params: params,
44
+ opts: opts
45
+ )
31
46
  end
32
47
  end
33
48
  end