stripe-ruby-mock 3.0.1 → 3.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (137) hide show
  1. checksums.yaml +5 -5
  2. data/.github/workflows/rspec_tests.yml +38 -0
  3. data/.rspec +2 -1
  4. data/CHANGELOG.md +62 -15
  5. data/Gemfile +1 -0
  6. data/README.md +5 -3
  7. data/lib/stripe_mock/api/client.rb +1 -1
  8. data/lib/stripe_mock/api/instance.rb +1 -1
  9. data/lib/stripe_mock/api/webhooks.rb +66 -25
  10. data/lib/stripe_mock/client.rb +2 -1
  11. data/lib/stripe_mock/data/list.rb +31 -6
  12. data/lib/stripe_mock/data.rb +201 -30
  13. data/lib/stripe_mock/instance.rb +12 -3
  14. data/lib/stripe_mock/request_handlers/account_links.rb +15 -0
  15. data/lib/stripe_mock/request_handlers/accounts.rb +17 -6
  16. data/lib/stripe_mock/request_handlers/charges.rb +11 -4
  17. data/lib/stripe_mock/request_handlers/checkout_session.rb +179 -0
  18. data/lib/stripe_mock/request_handlers/customers.rb +22 -13
  19. data/lib/stripe_mock/request_handlers/ephemeral_key.rb +1 -1
  20. data/lib/stripe_mock/request_handlers/events.rb +30 -3
  21. data/lib/stripe_mock/request_handlers/express_login_links.rb +15 -0
  22. data/lib/stripe_mock/request_handlers/helpers/coupon_helpers.rb +1 -0
  23. data/lib/stripe_mock/request_handlers/helpers/subscription_helpers.rb +36 -12
  24. data/lib/stripe_mock/request_handlers/invoices.rb +10 -4
  25. data/lib/stripe_mock/request_handlers/payment_intents.rb +13 -2
  26. data/lib/stripe_mock/request_handlers/payment_methods.rb +11 -4
  27. data/lib/stripe_mock/request_handlers/prices.rb +62 -0
  28. data/lib/stripe_mock/request_handlers/promotion_codes.rb +43 -0
  29. data/lib/stripe_mock/request_handlers/refunds.rb +13 -2
  30. data/lib/stripe_mock/request_handlers/setup_intents.rb +16 -9
  31. data/lib/stripe_mock/request_handlers/sources.rb +12 -6
  32. data/lib/stripe_mock/request_handlers/subscriptions.rb +120 -21
  33. data/lib/stripe_mock/request_handlers/tokens.rb +6 -4
  34. data/lib/stripe_mock/request_handlers/transfers.rb +12 -1
  35. data/lib/stripe_mock/request_handlers/validators/param_validators.rb +33 -4
  36. data/lib/stripe_mock/server.rb +2 -2
  37. data/lib/stripe_mock/test_strategies/base.rb +62 -10
  38. data/lib/stripe_mock/version.rb +1 -1
  39. data/lib/stripe_mock/webhook_fixtures/account.updated.json +1 -1
  40. data/lib/stripe_mock/webhook_fixtures/balance.available.json +27 -15
  41. data/lib/stripe_mock/webhook_fixtures/charge.captured.json +143 -0
  42. data/lib/stripe_mock/webhook_fixtures/charge.dispute.created.json +63 -16
  43. data/lib/stripe_mock/webhook_fixtures/charge.failed.json +49 -120
  44. data/lib/stripe_mock/webhook_fixtures/charge.refund.updated.json +35 -0
  45. data/lib/stripe_mock/webhook_fixtures/charge.refunded.json +145 -50
  46. data/lib/stripe_mock/webhook_fixtures/charge.succeeded.json +114 -43
  47. data/lib/stripe_mock/webhook_fixtures/checkout.session.completed.json +79 -0
  48. data/lib/stripe_mock/webhook_fixtures/checkout.session.completed.payment_mode.json +53 -0
  49. data/lib/stripe_mock/webhook_fixtures/checkout.session.completed.setup_mode.json +45 -0
  50. data/lib/stripe_mock/webhook_fixtures/customer.created.json +37 -46
  51. data/lib/stripe_mock/webhook_fixtures/customer.deleted.json +36 -32
  52. data/lib/stripe_mock/webhook_fixtures/customer.source.created.json +31 -22
  53. data/lib/stripe_mock/webhook_fixtures/customer.source.updated.json +36 -25
  54. data/lib/stripe_mock/webhook_fixtures/customer.subscription.created.json +135 -47
  55. data/lib/stripe_mock/webhook_fixtures/customer.subscription.deleted.json +134 -45
  56. data/lib/stripe_mock/webhook_fixtures/customer.subscription.updated.json +135 -56
  57. data/lib/stripe_mock/webhook_fixtures/customer.updated.json +38 -47
  58. data/lib/stripe_mock/webhook_fixtures/invoice.created.json +176 -49
  59. data/lib/stripe_mock/webhook_fixtures/invoice.finalized.json +171 -0
  60. data/lib/stripe_mock/webhook_fixtures/invoice.paid.json +171 -0
  61. data/lib/stripe_mock/webhook_fixtures/invoice.payment_action_required.json +171 -0
  62. data/lib/stripe_mock/webhook_fixtures/invoice.payment_failed.json +149 -83
  63. data/lib/stripe_mock/webhook_fixtures/invoice.payment_succeeded.json +149 -90
  64. data/lib/stripe_mock/webhook_fixtures/invoice.upcoming.json +70 -0
  65. data/lib/stripe_mock/webhook_fixtures/invoice.updated.json +178 -50
  66. data/lib/stripe_mock/webhook_fixtures/invoiceitem.created.json +87 -13
  67. data/lib/stripe_mock/webhook_fixtures/invoiceitem.updated.json +88 -14
  68. data/lib/stripe_mock/webhook_fixtures/mandate.updated.json +34 -0
  69. data/lib/stripe_mock/webhook_fixtures/payment_intent.amount_capturable_updated.json +170 -0
  70. data/lib/stripe_mock/webhook_fixtures/payment_intent.canceled.json +73 -0
  71. data/lib/stripe_mock/webhook_fixtures/payment_intent.created.json +86 -0
  72. data/lib/stripe_mock/webhook_fixtures/payment_intent.payment_failed.json +225 -0
  73. data/lib/stripe_mock/webhook_fixtures/payment_intent.processing.json +162 -0
  74. data/lib/stripe_mock/webhook_fixtures/payment_intent.requires_action.json +191 -0
  75. data/lib/stripe_mock/webhook_fixtures/payment_intent.succeeded.json +196 -0
  76. data/lib/stripe_mock/webhook_fixtures/payment_link.created.json +47 -0
  77. data/lib/stripe_mock/webhook_fixtures/payment_link.updated.json +50 -0
  78. data/lib/stripe_mock/webhook_fixtures/payment_method.attached.json +63 -0
  79. data/lib/stripe_mock/webhook_fixtures/payment_method.detached.json +62 -0
  80. data/lib/stripe_mock/webhook_fixtures/payout.created.json +40 -0
  81. data/lib/stripe_mock/webhook_fixtures/payout.paid.json +40 -0
  82. data/lib/stripe_mock/webhook_fixtures/payout.updated.json +46 -0
  83. data/lib/stripe_mock/webhook_fixtures/plan.created.json +30 -13
  84. data/lib/stripe_mock/webhook_fixtures/plan.deleted.json +30 -13
  85. data/lib/stripe_mock/webhook_fixtures/plan.updated.json +34 -14
  86. data/lib/stripe_mock/webhook_fixtures/price.created.json +42 -0
  87. data/lib/stripe_mock/webhook_fixtures/price.deleted.json +42 -0
  88. data/lib/stripe_mock/webhook_fixtures/price.updated.json +48 -0
  89. data/lib/stripe_mock/webhook_fixtures/product.created.json +19 -13
  90. data/lib/stripe_mock/webhook_fixtures/product.deleted.json +20 -14
  91. data/lib/stripe_mock/webhook_fixtures/product.updated.json +24 -15
  92. data/lib/stripe_mock/webhook_fixtures/quote.accepted.json +92 -0
  93. data/lib/stripe_mock/webhook_fixtures/quote.canceled.json +92 -0
  94. data/lib/stripe_mock/webhook_fixtures/quote.created.json +92 -0
  95. data/lib/stripe_mock/webhook_fixtures/quote.finalized.json +92 -0
  96. data/lib/stripe_mock/webhook_fixtures/setup_intent.canceled.json +46 -0
  97. data/lib/stripe_mock/webhook_fixtures/setup_intent.created.json +51 -0
  98. data/lib/stripe_mock/webhook_fixtures/setup_intent.setup_failed.json +100 -0
  99. data/lib/stripe_mock/webhook_fixtures/setup_intent.succeeded.json +46 -0
  100. data/lib/stripe_mock/webhook_fixtures/subscription_schedule.canceled.json +119 -0
  101. data/lib/stripe_mock/webhook_fixtures/subscription_schedule.created.json +114 -0
  102. data/lib/stripe_mock/webhook_fixtures/subscription_schedule.released.json +111 -0
  103. data/lib/stripe_mock/webhook_fixtures/subscription_schedule.updated.json +125 -0
  104. data/lib/stripe_mock/webhook_fixtures/tax_rate.created.json +32 -0
  105. data/lib/stripe_mock/webhook_fixtures/tax_rate.updated.json +37 -0
  106. data/lib/stripe_mock.rb +7 -1
  107. data/spec/instance_spec.rb +7 -7
  108. data/spec/integration_examples/completing_checkout_sessions_example.rb +37 -0
  109. data/spec/list_spec.rb +23 -0
  110. data/spec/readme_spec.rb +1 -1
  111. data/spec/server_spec.rb +4 -2
  112. data/spec/shared_stripe_examples/account_examples.rb +9 -1
  113. data/spec/shared_stripe_examples/account_link_examples.rb +16 -0
  114. data/spec/shared_stripe_examples/balance_examples.rb +6 -0
  115. data/spec/shared_stripe_examples/card_token_examples.rb +17 -21
  116. data/spec/shared_stripe_examples/checkout_session_examples.rb +99 -0
  117. data/spec/shared_stripe_examples/customer_examples.rb +11 -13
  118. data/spec/shared_stripe_examples/express_login_link_examples.rb +12 -0
  119. data/spec/shared_stripe_examples/invoice_examples.rb +29 -8
  120. data/spec/shared_stripe_examples/payment_intent_examples.rb +74 -0
  121. data/spec/shared_stripe_examples/payment_method_examples.rb +336 -67
  122. data/spec/shared_stripe_examples/price_examples.rb +223 -0
  123. data/spec/shared_stripe_examples/product_examples.rb +1 -9
  124. data/spec/shared_stripe_examples/promotion_code_examples.rb +68 -0
  125. data/spec/shared_stripe_examples/refund_examples.rb +13 -0
  126. data/spec/shared_stripe_examples/setup_intent_examples.rb +17 -0
  127. data/spec/shared_stripe_examples/subscription_examples.rb +327 -9
  128. data/spec/shared_stripe_examples/transfer_examples.rb +10 -1
  129. data/spec/shared_stripe_examples/webhook_event_examples.rb +51 -5
  130. data/spec/spec_helper.rb +4 -0
  131. data/spec/stripe_mock_spec.rb +2 -2
  132. data/spec/support/stripe_examples.rb +8 -2
  133. data/stripe-ruby-mock.gemspec +7 -2
  134. metadata +72 -15
  135. data/.travis.yml +0 -28
  136. data/lib/stripe_mock/request_handlers/checkout.rb +0 -15
  137. data/spec/shared_stripe_examples/checkout_examples.rb +0 -19
@@ -1,74 +1,202 @@
1
1
  {
2
- "created": 1326853478,
3
- "livemode": false,
4
- "id": "evt_00000000000000",
5
- "type": "invoice.updated",
6
- "status": "paid",
2
+ "id": "evt_000000000000000000000000",
7
3
  "object": "event",
4
+ "api_version": "2020-08-27",
5
+ "created": 1648320099,
8
6
  "data": {
9
7
  "object": {
10
- "created": 1380674206,
11
- "id": "in_00000000000000",
12
- "period_start": 1378082075,
13
- "period_end": 1380674075,
8
+ "id": "in_000000000000000000000000",
9
+ "object": "invoice",
10
+ "account_country": "US",
11
+ "account_name": "Example Company, Inc.",
12
+ "account_tax_ids": null,
13
+ "amount_due": 1500,
14
+ "amount_paid": 0,
15
+ "amount_remaining": 1500,
16
+ "application_fee_amount": null,
17
+ "attempt_count": 0,
18
+ "attempted": false,
19
+ "auto_advance": false,
20
+ "automatic_tax": {
21
+ "enabled": false,
22
+ "status": null
23
+ },
24
+ "billing_reason": "subscription_create",
25
+ "charge": null,
26
+ "collection_method": "charge_automatically",
27
+ "created": 1648320096,
28
+ "currency": "usd",
29
+ "custom_fields": null,
30
+ "customer": "cus_00000000000000",
31
+ "customer_address": null,
32
+ "customer_email": null,
33
+ "customer_name": null,
34
+ "customer_phone": null,
35
+ "customer_shipping": null,
36
+ "customer_tax_exempt": "none",
37
+ "customer_tax_ids": [
38
+
39
+ ],
40
+ "default_payment_method": null,
41
+ "default_source": null,
42
+ "default_tax_rates": [
43
+
44
+ ],
45
+ "description": null,
46
+ "discount": null,
47
+ "discounts": [
48
+
49
+ ],
50
+ "due_date": null,
51
+ "ending_balance": null,
52
+ "footer": null,
53
+ "hosted_invoice_url": null,
54
+ "invoice_pdf": null,
55
+ "last_finalization_error": null,
14
56
  "lines": {
15
- "count": 1,
16
57
  "object": "list",
17
- "url": "/v1/invoices/in_00000000000000/lines",
18
58
  "data": [
19
59
  {
20
- "id": "su_00000000000000",
60
+ "id": "il_000000000000000000000000",
21
61
  "object": "line_item",
22
- "type": "subscription",
23
- "livemode": true,
24
- "amount": 100,
62
+ "amount": 1500,
25
63
  "currency": "usd",
26
- "proration": false,
64
+ "description": "1 × myproduct (at $15.00 / month)",
65
+ "discount_amounts": [
66
+
67
+ ],
68
+ "discountable": true,
69
+ "discounts": [
70
+
71
+ ],
72
+ "livemode": false,
73
+ "metadata": {
74
+ },
27
75
  "period": {
28
- "start": 1383759047,
29
- "end": 1386351047
76
+ "end": 1650998496,
77
+ "start": 1648320096
30
78
  },
31
- "quantity": 1,
32
79
  "plan": {
33
- "interval": "month",
34
- "product": "pr_00000000000000",
35
- "amount": 100,
36
- "currency": "usd",
37
- "id": "fkx0AFo",
80
+ "id": "price_000000000000000000000000",
38
81
  "object": "plan",
39
- "livemode": false,
82
+ "active": true,
83
+ "aggregate_usage": null,
84
+ "amount": 1500,
85
+ "amount_decimal": "1500",
86
+ "billing_scheme": "per_unit",
87
+ "created": 1648320095,
88
+ "currency": "usd",
89
+ "interval": "month",
40
90
  "interval_count": 1,
91
+ "livemode": false,
92
+ "metadata": {
93
+ },
94
+ "nickname": null,
95
+ "product": "prod_00000000000000",
96
+ "tiers_mode": null,
97
+ "transform_usage": null,
41
98
  "trial_period_days": null,
42
- "metadata": {}
99
+ "usage_type": "licensed"
43
100
  },
44
- "description": null,
45
- "metadata": null
101
+ "price": {
102
+ "id": "price_000000000000000000000000",
103
+ "object": "price",
104
+ "active": true,
105
+ "billing_scheme": "per_unit",
106
+ "created": 1648320095,
107
+ "currency": "usd",
108
+ "livemode": false,
109
+ "lookup_key": null,
110
+ "metadata": {
111
+ },
112
+ "nickname": null,
113
+ "product": "prod_00000000000000",
114
+ "recurring": {
115
+ "aggregate_usage": null,
116
+ "interval": "month",
117
+ "interval_count": 1,
118
+ "trial_period_days": null,
119
+ "usage_type": "licensed"
120
+ },
121
+ "tax_behavior": "unspecified",
122
+ "tiers_mode": null,
123
+ "transform_quantity": null,
124
+ "type": "recurring",
125
+ "unit_amount": 1500,
126
+ "unit_amount_decimal": "1500"
127
+ },
128
+ "proration": false,
129
+ "proration_details": {
130
+ "credited_items": null
131
+ },
132
+ "quantity": 1,
133
+ "subscription": "sub_000000000000000000000000",
134
+ "subscription_item": "si_00000000000000",
135
+ "tax_amounts": [
136
+
137
+ ],
138
+ "tax_rates": [
139
+
140
+ ],
141
+ "type": "subscription"
46
142
  }
47
- ]
143
+ ],
144
+ "has_more": false,
145
+ "total_count": 1,
146
+ "url": "/v1/invoices/in_000000000000000000000000/lines"
48
147
  },
49
- "subtotal": 1000,
50
- "total": 1000,
51
- "customer": "cus_00000000000000",
52
- "object": "invoice",
53
- "attempted": true,
54
- "closed": true,
55
- "paid": true,
56
148
  "livemode": false,
57
- "attempt_count": 1,
58
- "amount_due": 1000,
59
- "currency": "usd",
60
- "starting_balance": 0,
61
- "ending_balance": 0,
149
+ "metadata": {
150
+ },
62
151
  "next_payment_attempt": null,
63
- "charge": "ch_00000000000000",
64
- "discount": null,
65
- "application_fee": null,
66
- "subscription": "sub_00000000000000",
67
- "metadata": {},
68
- "description": null
152
+ "number": null,
153
+ "on_behalf_of": null,
154
+ "paid": false,
155
+ "paid_out_of_band": false,
156
+ "payment_intent": null,
157
+ "payment_settings": {
158
+ "payment_method_options": null,
159
+ "payment_method_types": null
160
+ },
161
+ "period_end": 1648320096,
162
+ "period_start": 1648320096,
163
+ "post_payment_credit_notes_amount": 0,
164
+ "pre_payment_credit_notes_amount": 0,
165
+ "quote": null,
166
+ "receipt_number": null,
167
+ "starting_balance": 0,
168
+ "statement_descriptor": null,
169
+ "status": "draft",
170
+ "status_transitions": {
171
+ "finalized_at": null,
172
+ "marked_uncollectible_at": null,
173
+ "paid_at": null,
174
+ "voided_at": null
175
+ },
176
+ "subscription": "sub_000000000000000000000000",
177
+ "subtotal": 1500,
178
+ "tax": null,
179
+ "test_clock": null,
180
+ "total": 1500,
181
+ "total_discount_amounts": [
182
+
183
+ ],
184
+ "total_tax_amounts": [
185
+
186
+ ],
187
+ "transfer_data": null,
188
+ "webhooks_delivered_at": 1648320097
69
189
  },
70
190
  "previous_attributes": {
71
- "lines": []
191
+ "auto_advance": true,
192
+ "next_payment_attempt": 1648323696
72
193
  }
73
- }
74
- }
194
+ },
195
+ "livemode": false,
196
+ "pending_webhooks": 2,
197
+ "request": {
198
+ "id": null,
199
+ "idempotency_key": null
200
+ },
201
+ "type": "invoice.updated"
202
+ }
@@ -1,21 +1,95 @@
1
1
  {
2
- "created": 1326853478,
3
- "livemode": false,
4
- "id": "evt_00000000000000",
5
- "type": "invoiceitem.created",
2
+ "id": "evt_000000000000000000000000",
6
3
  "object": "event",
4
+ "api_version": "2020-08-27",
5
+ "created": 1648320097,
7
6
  "data": {
8
7
  "object": {
8
+ "id": "ii_000000000000000000000000",
9
9
  "object": "invoiceitem",
10
- "id": "ii_00000000000000",
11
- "date": 1372126711,
12
- "amount": 2500,
13
- "livemode": false,
14
- "proration": false,
10
+ "amount": -1500,
15
11
  "currency": "usd",
16
12
  "customer": "cus_00000000000000",
17
- "description": "Plan: Veteran's Club Signup Fee Plan Id: 4",
18
- "invoice": "in_00000000000000"
13
+ "date": 1648320097,
14
+ "description": "Unused time on myproduct after 26 Mar 2022",
15
+ "discountable": false,
16
+ "discounts": [
17
+
18
+ ],
19
+ "invoice": null,
20
+ "livemode": false,
21
+ "metadata": {
22
+ },
23
+ "period": {
24
+ "end": 1650998496,
25
+ "start": 1648320097
26
+ },
27
+ "plan": {
28
+ "id": "price_000000000000000000000000",
29
+ "object": "plan",
30
+ "active": true,
31
+ "aggregate_usage": null,
32
+ "amount": 1500,
33
+ "amount_decimal": "1500",
34
+ "billing_scheme": "per_unit",
35
+ "created": 1648320095,
36
+ "currency": "usd",
37
+ "interval": "month",
38
+ "interval_count": 1,
39
+ "livemode": false,
40
+ "metadata": {
41
+ },
42
+ "nickname": null,
43
+ "product": "prod_00000000000000",
44
+ "tiers_mode": null,
45
+ "transform_usage": null,
46
+ "trial_period_days": null,
47
+ "usage_type": "licensed"
48
+ },
49
+ "price": {
50
+ "id": "price_000000000000000000000000",
51
+ "object": "price",
52
+ "active": true,
53
+ "billing_scheme": "per_unit",
54
+ "created": 1648320095,
55
+ "currency": "usd",
56
+ "livemode": false,
57
+ "lookup_key": null,
58
+ "metadata": {
59
+ },
60
+ "nickname": null,
61
+ "product": "prod_00000000000000",
62
+ "recurring": {
63
+ "aggregate_usage": null,
64
+ "interval": "month",
65
+ "interval_count": 1,
66
+ "trial_period_days": null,
67
+ "usage_type": "licensed"
68
+ },
69
+ "tax_behavior": "unspecified",
70
+ "tiers_mode": null,
71
+ "transform_quantity": null,
72
+ "type": "recurring",
73
+ "unit_amount": 1500,
74
+ "unit_amount_decimal": "1500"
75
+ },
76
+ "proration": true,
77
+ "quantity": 1,
78
+ "subscription": "sub_000000000000000000000000",
79
+ "subscription_item": "si_00000000000000",
80
+ "tax_rates": [
81
+
82
+ ],
83
+ "test_clock": null,
84
+ "unit_amount": -1500,
85
+ "unit_amount_decimal": "-1500"
19
86
  }
20
- }
21
- }
87
+ },
88
+ "livemode": false,
89
+ "pending_webhooks": 2,
90
+ "request": {
91
+ "id": "req_00000000000000",
92
+ "idempotency_key": "27f56452-b979-42fb-8bc1-219db1e65979"
93
+ },
94
+ "type": "invoiceitem.created"
95
+ }
@@ -1,24 +1,98 @@
1
1
  {
2
- "created": 1326853478,
3
- "livemode": false,
4
- "id": "evt_00000000000000",
5
- "type": "invoiceitem.updated",
2
+ "id": "evt_000000000000000000000000",
6
3
  "object": "event",
4
+ "api_version": "2020-08-27",
5
+ "created": 1648320097,
7
6
  "data": {
8
7
  "object": {
8
+ "id": "ii_000000000000000000000000",
9
9
  "object": "invoiceitem",
10
- "id": "ii_00000000000000",
11
- "date": 1372126711,
12
- "amount": 2500,
13
- "livemode": false,
14
- "proration": false,
10
+ "amount": -1500,
15
11
  "currency": "usd",
16
12
  "customer": "cus_00000000000000",
17
- "description": "Plan: Veteran's Club Signup Fee Plan Id: 4",
18
- "invoice": "in_00000000000000"
13
+ "date": 1648320097,
14
+ "description": "Unused time on myproduct after 26 Mar 2022",
15
+ "discountable": false,
16
+ "discounts": [
17
+
18
+ ],
19
+ "invoice": "in_000000000000000000000000",
20
+ "livemode": false,
21
+ "metadata": {
22
+ },
23
+ "period": {
24
+ "end": 1650998496,
25
+ "start": 1648320097
26
+ },
27
+ "plan": {
28
+ "id": "price_000000000000000000000000",
29
+ "object": "plan",
30
+ "active": true,
31
+ "aggregate_usage": null,
32
+ "amount": 1500,
33
+ "amount_decimal": "1500",
34
+ "billing_scheme": "per_unit",
35
+ "created": 1648320095,
36
+ "currency": "usd",
37
+ "interval": "month",
38
+ "interval_count": 1,
39
+ "livemode": false,
40
+ "metadata": {
41
+ },
42
+ "nickname": null,
43
+ "product": "prod_00000000000000",
44
+ "tiers_mode": null,
45
+ "transform_usage": null,
46
+ "trial_period_days": null,
47
+ "usage_type": "licensed"
48
+ },
49
+ "price": {
50
+ "id": "price_000000000000000000000000",
51
+ "object": "price",
52
+ "active": true,
53
+ "billing_scheme": "per_unit",
54
+ "created": 1648320095,
55
+ "currency": "usd",
56
+ "livemode": false,
57
+ "lookup_key": null,
58
+ "metadata": {
59
+ },
60
+ "nickname": null,
61
+ "product": "prod_00000000000000",
62
+ "recurring": {
63
+ "aggregate_usage": null,
64
+ "interval": "month",
65
+ "interval_count": 1,
66
+ "trial_period_days": null,
67
+ "usage_type": "licensed"
68
+ },
69
+ "tax_behavior": "unspecified",
70
+ "tiers_mode": null,
71
+ "transform_quantity": null,
72
+ "type": "recurring",
73
+ "unit_amount": 1500,
74
+ "unit_amount_decimal": "1500"
75
+ },
76
+ "proration": true,
77
+ "quantity": 1,
78
+ "subscription": "sub_000000000000000000000000",
79
+ "subscription_item": "si_00000000000000",
80
+ "tax_rates": [
81
+
82
+ ],
83
+ "test_clock": null,
84
+ "unit_amount": -1500,
85
+ "unit_amount_decimal": "-1500"
19
86
  },
20
87
  "previous_attributes": {
21
- "amount": 2121
88
+ "invoice": null
22
89
  }
23
- }
24
- }
90
+ },
91
+ "livemode": false,
92
+ "pending_webhooks": 2,
93
+ "request": {
94
+ "id": "req_00000000000000",
95
+ "idempotency_key": "27f56452-b979-42fb-8bc1-219db1e65979"
96
+ },
97
+ "type": "invoiceitem.updated"
98
+ }
@@ -0,0 +1,34 @@
1
+ {
2
+ "created": 1326853478,
3
+ "livemode": false,
4
+ "id": "evt_00000000000000",
5
+ "type": "mandate.updated",
6
+ "object": "event",
7
+ "data": {
8
+ "object": {
9
+ "id": "mandate_000000000000000000000000",
10
+ "object": "mandate",
11
+ "customer_acceptance": {
12
+ "accepted_at": 1326853478,
13
+ "online": {
14
+ "ip_address": "0.0.0.0",
15
+ "user_agent": "UserAgent"
16
+ },
17
+ "type": "online"
18
+ },
19
+ "livemode": false,
20
+ "multi_use": {},
21
+ "payment_method": "pm_000000000000000000000000",
22
+ "payment_method_details": {},
23
+ "status": "active",
24
+ "type": "multi_use"
25
+ },
26
+ "previous_attributes": {
27
+ "payment_method_details": {
28
+ "bacs_debit": {
29
+ "network_status": "pending"
30
+ }
31
+ }
32
+ }
33
+ }
34
+ }
@@ -0,0 +1,170 @@
1
+ {
2
+ "id": "evt_000000000000000000000000",
3
+ "object": "event",
4
+ "api_version": "2020-08-27",
5
+ "created": 1648320022,
6
+ "data": {
7
+ "object": {
8
+ "id": "pi_000000000000000000000000",
9
+ "object": "payment_intent",
10
+ "amount": 2000,
11
+ "amount_capturable": 2000,
12
+ "amount_received": 0,
13
+ "application": null,
14
+ "application_fee_amount": null,
15
+ "automatic_payment_methods": null,
16
+ "canceled_at": null,
17
+ "cancellation_reason": null,
18
+ "capture_method": "manual",
19
+ "charges": {
20
+ "object": "list",
21
+ "data": [
22
+ {
23
+ "id": "ch_000000000000000000000000",
24
+ "object": "charge",
25
+ "amount": 2000,
26
+ "amount_captured": 0,
27
+ "amount_refunded": 0,
28
+ "application": null,
29
+ "application_fee": null,
30
+ "application_fee_amount": null,
31
+ "balance_transaction": null,
32
+ "billing_details": {
33
+ "address": {
34
+ "city": null,
35
+ "country": null,
36
+ "line1": null,
37
+ "line2": null,
38
+ "postal_code": null,
39
+ "state": null
40
+ },
41
+ "email": null,
42
+ "name": null,
43
+ "phone": null
44
+ },
45
+ "calculated_statement_descriptor": "EXAMPLECOMPANY",
46
+ "captured": false,
47
+ "created": 1648320022,
48
+ "currency": "usd",
49
+ "customer": null,
50
+ "description": "(created by Stripe CLI)",
51
+ "destination": null,
52
+ "dispute": null,
53
+ "disputed": false,
54
+ "failure_code": null,
55
+ "failure_message": null,
56
+ "fraud_details": {
57
+ },
58
+ "invoice": null,
59
+ "livemode": false,
60
+ "metadata": {
61
+ },
62
+ "on_behalf_of": null,
63
+ "order": null,
64
+ "outcome": {
65
+ "network_status": "approved_by_network",
66
+ "reason": null,
67
+ "risk_level": "normal",
68
+ "risk_score": 2,
69
+ "seller_message": "Payment complete.",
70
+ "type": "authorized"
71
+ },
72
+ "paid": true,
73
+ "payment_intent": "pi_000000000000000000000000",
74
+ "payment_method": "pm_000000000000000000000000",
75
+ "payment_method_details": {
76
+ "card": {
77
+ "brand": "visa",
78
+ "checks": {
79
+ "address_line1_check": null,
80
+ "address_postal_code_check": null,
81
+ "cvc_check": null
82
+ },
83
+ "country": "US",
84
+ "exp_month": 3,
85
+ "exp_year": 2023,
86
+ "fingerprint": "ZoVSX2dK5igWt2SB",
87
+ "funding": "credit",
88
+ "installments": null,
89
+ "last4": "4242",
90
+ "mandate": null,
91
+ "network": "visa",
92
+ "three_d_secure": null,
93
+ "wallet": null
94
+ },
95
+ "type": "card"
96
+ },
97
+ "receipt_email": null,
98
+ "receipt_number": null,
99
+ "receipt_url": "https://pay.stripe.com/receipts/acct_0000000000000000/ch_000000000000000000000000/rcpt_0000000000000000000000000000000",
100
+ "refunded": false,
101
+ "refunds": {
102
+ "object": "list",
103
+ "data": [
104
+
105
+ ],
106
+ "has_more": false,
107
+ "total_count": 0,
108
+ "url": "/v1/charges/ch_000000000000000000000000/refunds"
109
+ },
110
+ "review": null,
111
+ "shipping": null,
112
+ "source": null,
113
+ "source_transfer": null,
114
+ "statement_descriptor": null,
115
+ "statement_descriptor_suffix": null,
116
+ "status": "succeeded",
117
+ "transfer_data": null,
118
+ "transfer_group": null
119
+ }
120
+ ],
121
+ "has_more": false,
122
+ "total_count": 1,
123
+ "url": "/v1/charges?payment_intent=pi_000000000000000000000000"
124
+ },
125
+ "client_secret": "pi_000000000000000000000000_secret_0000000000000000000000000",
126
+ "confirmation_method": "manual",
127
+ "created": 1648320022,
128
+ "currency": "usd",
129
+ "customer": null,
130
+ "description": "(created by Stripe CLI)",
131
+ "invoice": null,
132
+ "last_payment_error": null,
133
+ "livemode": false,
134
+ "metadata": {
135
+ },
136
+ "next_action": null,
137
+ "on_behalf_of": null,
138
+ "payment_method": "pm_000000000000000000000000",
139
+ "payment_method_options": {
140
+ "card": {
141
+ "installments": null,
142
+ "mandate_options": null,
143
+ "network": null,
144
+ "request_three_d_secure": "automatic"
145
+ }
146
+ },
147
+ "payment_method_types": [
148
+ "card"
149
+ ],
150
+ "processing": null,
151
+ "receipt_email": null,
152
+ "review": null,
153
+ "setup_future_usage": null,
154
+ "shipping": null,
155
+ "source": null,
156
+ "statement_descriptor": null,
157
+ "statement_descriptor_suffix": null,
158
+ "status": "requires_capture",
159
+ "transfer_data": null,
160
+ "transfer_group": null
161
+ }
162
+ },
163
+ "livemode": false,
164
+ "pending_webhooks": 2,
165
+ "request": {
166
+ "id": "req_00000000000000",
167
+ "idempotency_key": "b7b0532f-40b9-4008-8b6c-62b902c370cd"
168
+ },
169
+ "type": "payment_intent.amount_capturable_updated"
170
+ }