stripe 15.3.0 → 15.4.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 (96) hide show
  1. checksums.yaml +4 -4
  2. data/API_VERSION +1 -1
  3. data/CHANGELOG.md +21 -1
  4. data/OPENAPI_VERSION +1 -1
  5. data/VERSION +1 -1
  6. data/lib/stripe/api_version.rb +1 -1
  7. data/lib/stripe/resources/account.rb +5 -5
  8. data/lib/stripe/resources/account_link.rb +3 -1
  9. data/lib/stripe/resources/account_session.rb +51 -0
  10. data/lib/stripe/resources/billing/credit_grant.rb +1 -1
  11. data/lib/stripe/resources/billing_portal/configuration.rb +46 -2
  12. data/lib/stripe/resources/charge.rb +7 -5
  13. data/lib/stripe/resources/checkout/session.rb +32 -4
  14. data/lib/stripe/resources/confirmation_token.rb +3 -3
  15. data/lib/stripe/resources/customer.rb +1 -1
  16. data/lib/stripe/resources/dispute.rb +1 -1
  17. data/lib/stripe/resources/event.rb +14 -26
  18. data/lib/stripe/resources/invoice.rb +24 -8
  19. data/lib/stripe/resources/invoice_item.rb +1 -1
  20. data/lib/stripe/resources/payment_intent.rb +14 -4
  21. data/lib/stripe/resources/payment_link.rb +83 -5
  22. data/lib/stripe/resources/payment_method.rb +4 -4
  23. data/lib/stripe/resources/quote.rb +1 -1
  24. data/lib/stripe/resources/radar/value_list.rb +2 -2
  25. data/lib/stripe/resources/refund.rb +1 -1
  26. data/lib/stripe/resources/review.rb +2 -2
  27. data/lib/stripe/resources/setup_attempt.rb +1 -1
  28. data/lib/stripe/resources/subscription.rb +2 -2
  29. data/lib/stripe/resources/subscription_item.rb +2 -2
  30. data/lib/stripe/resources/subscription_schedule.rb +35 -3
  31. data/lib/stripe/resources/tax/registration.rb +408 -30
  32. data/lib/stripe/resources/terminal/configuration.rb +196 -0
  33. data/lib/stripe/services/account_link_service.rb +3 -1
  34. data/lib/stripe/services/account_service.rb +3 -3
  35. data/lib/stripe/services/account_session_service.rb +34 -0
  36. data/lib/stripe/services/billing/credit_grant_service.rb +1 -1
  37. data/lib/stripe/services/billing_portal/configuration_service.rb +36 -2
  38. data/lib/stripe/services/checkout/session_service.rb +19 -3
  39. data/lib/stripe/services/invoice_item_service.rb +1 -1
  40. data/lib/stripe/services/invoice_service.rb +24 -8
  41. data/lib/stripe/services/payment_intent_service.rb +8 -3
  42. data/lib/stripe/services/payment_link_service.rb +81 -5
  43. data/lib/stripe/services/payment_method_service.rb +1 -1
  44. data/lib/stripe/services/quote_service.rb +1 -1
  45. data/lib/stripe/services/radar/value_list_service.rb +1 -1
  46. data/lib/stripe/services/subscription_item_service.rb +2 -2
  47. data/lib/stripe/services/subscription_schedule_service.rb +35 -3
  48. data/lib/stripe/services/subscription_service.rb +2 -2
  49. data/lib/stripe/services/tax/registration_service.rb +360 -30
  50. data/lib/stripe/services/terminal/configuration_service.rb +152 -0
  51. data/lib/stripe/version.rb +1 -1
  52. data/rbi/stripe/resources/account.rbi +5 -5
  53. data/rbi/stripe/resources/account_link.rbi +3 -1
  54. data/rbi/stripe/resources/account_session.rbi +62 -1
  55. data/rbi/stripe/resources/billing/credit_grant.rbi +1 -1
  56. data/rbi/stripe/resources/billing_portal/configuration.rbi +62 -4
  57. data/rbi/stripe/resources/charge.rbi +8 -5
  58. data/rbi/stripe/resources/checkout/session.rbi +42 -7
  59. data/rbi/stripe/resources/confirmation_token.rbi +3 -3
  60. data/rbi/stripe/resources/customer.rbi +1 -1
  61. data/rbi/stripe/resources/dispute.rbi +1 -1
  62. data/rbi/stripe/resources/event.rbi +14 -26
  63. data/rbi/stripe/resources/invoice.rbi +27 -11
  64. data/rbi/stripe/resources/invoice_item.rbi +1 -1
  65. data/rbi/stripe/resources/payment_intent.rbi +14 -4
  66. data/rbi/stripe/resources/payment_link.rbi +101 -9
  67. data/rbi/stripe/resources/payment_method.rbi +4 -4
  68. data/rbi/stripe/resources/quote.rbi +1 -1
  69. data/rbi/stripe/resources/radar/value_list.rbi +2 -2
  70. data/rbi/stripe/resources/refund.rbi +1 -1
  71. data/rbi/stripe/resources/review.rbi +2 -2
  72. data/rbi/stripe/resources/setup_attempt.rbi +1 -1
  73. data/rbi/stripe/resources/subscription.rbi +6 -6
  74. data/rbi/stripe/resources/subscription_item.rbi +2 -2
  75. data/rbi/stripe/resources/subscription_schedule.rbi +33 -5
  76. data/rbi/stripe/resources/tax/registration.rbi +544 -60
  77. data/rbi/stripe/resources/terminal/configuration.rbi +210 -2
  78. data/rbi/stripe/services/account_link_service.rbi +3 -1
  79. data/rbi/stripe/services/account_service.rbi +3 -3
  80. data/rbi/stripe/services/account_session_service.rbi +40 -1
  81. data/rbi/stripe/services/billing/credit_grant_service.rbi +1 -1
  82. data/rbi/stripe/services/billing_portal/configuration_service.rbi +48 -4
  83. data/rbi/stripe/services/checkout/session_service.rbi +26 -6
  84. data/rbi/stripe/services/invoice_item_service.rbi +1 -1
  85. data/rbi/stripe/services/invoice_service.rbi +27 -11
  86. data/rbi/stripe/services/payment_intent_service.rbi +8 -3
  87. data/rbi/stripe/services/payment_link_service.rbi +98 -9
  88. data/rbi/stripe/services/payment_method_service.rbi +1 -1
  89. data/rbi/stripe/services/quote_service.rbi +1 -1
  90. data/rbi/stripe/services/radar/value_list_service.rbi +1 -1
  91. data/rbi/stripe/services/subscription_item_service.rbi +2 -2
  92. data/rbi/stripe/services/subscription_schedule_service.rbi +37 -5
  93. data/rbi/stripe/services/subscription_service.rbi +6 -6
  94. data/rbi/stripe/services/tax/registration_service.rbi +480 -60
  95. data/rbi/stripe/services/terminal/configuration_service.rbi +170 -2
  96. metadata +2 -2
@@ -12,6 +12,14 @@ module Stripe
12
12
  class Registration < APIResource
13
13
  class CountryOptions < Stripe::StripeObject
14
14
  class Ae < Stripe::StripeObject
15
+ class Standard < Stripe::StripeObject
16
+ # Place of supply scheme used in an Default standard registration.
17
+ sig { returns(String) }
18
+ attr_reader :place_of_supply_scheme
19
+ end
20
+ # Attribute for field standard
21
+ sig { returns(Standard) }
22
+ attr_reader :standard
15
23
  # Type of registration in `country`.
16
24
  sig { returns(String) }
17
25
  attr_reader :type
@@ -45,6 +53,14 @@ module Stripe
45
53
  attr_reader :type
46
54
  end
47
55
  class Au < Stripe::StripeObject
56
+ class Standard < Stripe::StripeObject
57
+ # Place of supply scheme used in an Default standard registration.
58
+ sig { returns(String) }
59
+ attr_reader :place_of_supply_scheme
60
+ end
61
+ # Attribute for field standard
62
+ sig { returns(Standard) }
63
+ attr_reader :standard
48
64
  # Type of registration in `country`.
49
65
  sig { returns(String) }
50
66
  attr_reader :type
@@ -144,6 +160,14 @@ module Stripe
144
160
  attr_reader :type
145
161
  end
146
162
  class Ch < Stripe::StripeObject
163
+ class Standard < Stripe::StripeObject
164
+ # Place of supply scheme used in an Default standard registration.
165
+ sig { returns(String) }
166
+ attr_reader :place_of_supply_scheme
167
+ end
168
+ # Attribute for field standard
169
+ sig { returns(Standard) }
170
+ attr_reader :standard
147
171
  # Type of registration in `country`.
148
172
  sig { returns(String) }
149
173
  attr_reader :type
@@ -293,6 +317,14 @@ module Stripe
293
317
  attr_reader :type
294
318
  end
295
319
  class Gb < Stripe::StripeObject
320
+ class Standard < Stripe::StripeObject
321
+ # Place of supply scheme used in an Default standard registration.
322
+ sig { returns(String) }
323
+ attr_reader :place_of_supply_scheme
324
+ end
325
+ # Attribute for field standard
326
+ sig { returns(Standard) }
327
+ attr_reader :standard
296
328
  # Type of registration in `country`.
297
329
  sig { returns(String) }
298
330
  attr_reader :type
@@ -388,6 +420,14 @@ module Stripe
388
420
  attr_reader :type
389
421
  end
390
422
  class Jp < Stripe::StripeObject
423
+ class Standard < Stripe::StripeObject
424
+ # Place of supply scheme used in an Default standard registration.
425
+ sig { returns(String) }
426
+ attr_reader :place_of_supply_scheme
427
+ end
428
+ # Attribute for field standard
429
+ sig { returns(Standard) }
430
+ attr_reader :standard
391
431
  # Type of registration in `country`.
392
432
  sig { returns(String) }
393
433
  attr_reader :type
@@ -528,6 +568,14 @@ module Stripe
528
568
  attr_reader :type
529
569
  end
530
570
  class No < Stripe::StripeObject
571
+ class Standard < Stripe::StripeObject
572
+ # Place of supply scheme used in an Default standard registration.
573
+ sig { returns(String) }
574
+ attr_reader :place_of_supply_scheme
575
+ end
576
+ # Attribute for field standard
577
+ sig { returns(Standard) }
578
+ attr_reader :standard
531
579
  # Type of registration in `country`.
532
580
  sig { returns(String) }
533
581
  attr_reader :type
@@ -538,6 +586,14 @@ module Stripe
538
586
  attr_reader :type
539
587
  end
540
588
  class Nz < Stripe::StripeObject
589
+ class Standard < Stripe::StripeObject
590
+ # Place of supply scheme used in an Default standard registration.
591
+ sig { returns(String) }
592
+ attr_reader :place_of_supply_scheme
593
+ end
594
+ # Attribute for field standard
595
+ sig { returns(Standard) }
596
+ attr_reader :standard
541
597
  # Type of registration in `country`.
542
598
  sig { returns(String) }
543
599
  attr_reader :type
@@ -625,6 +681,14 @@ module Stripe
625
681
  attr_reader :type
626
682
  end
627
683
  class Sg < Stripe::StripeObject
684
+ class Standard < Stripe::StripeObject
685
+ # Place of supply scheme used in an Default standard registration.
686
+ sig { returns(String) }
687
+ attr_reader :place_of_supply_scheme
688
+ end
689
+ # Attribute for field standard
690
+ sig { returns(Standard) }
691
+ attr_reader :standard
628
692
  # Type of registration in `country`.
629
693
  sig { returns(String) }
630
694
  attr_reader :type
@@ -1120,18 +1184,46 @@ module Stripe
1120
1184
  class CreateParams < Stripe::RequestParams
1121
1185
  class CountryOptions < Stripe::RequestParams
1122
1186
  class Ae < Stripe::RequestParams
1187
+ class Standard < Stripe::RequestParams
1188
+ # Place of supply scheme used in an standard registration.
1189
+ sig { returns(T.nilable(String)) }
1190
+ attr_accessor :place_of_supply_scheme
1191
+ sig { params(place_of_supply_scheme: T.nilable(String)).void }
1192
+ def initialize(place_of_supply_scheme: nil); end
1193
+ end
1194
+ # Options for the standard registration.
1195
+ sig {
1196
+ returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Ae::Standard))
1197
+ }
1198
+ attr_accessor :standard
1123
1199
  # Type of registration to be created in `country`.
1124
1200
  sig { returns(String) }
1125
1201
  attr_accessor :type
1126
- sig { params(type: String).void }
1127
- def initialize(type: nil); end
1202
+ sig {
1203
+ params(standard: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Ae::Standard), type: String).void
1204
+ }
1205
+ def initialize(standard: nil, type: nil); end
1128
1206
  end
1129
1207
  class Al < Stripe::RequestParams
1208
+ class Standard < Stripe::RequestParams
1209
+ # Place of supply scheme used in an standard registration.
1210
+ sig { returns(T.nilable(String)) }
1211
+ attr_accessor :place_of_supply_scheme
1212
+ sig { params(place_of_supply_scheme: T.nilable(String)).void }
1213
+ def initialize(place_of_supply_scheme: nil); end
1214
+ end
1215
+ # Options for the standard registration.
1216
+ sig {
1217
+ returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Al::Standard))
1218
+ }
1219
+ attr_accessor :standard
1130
1220
  # Type of registration to be created in `country`.
1131
1221
  sig { returns(String) }
1132
1222
  attr_accessor :type
1133
- sig { params(type: String).void }
1134
- def initialize(type: nil); end
1223
+ sig {
1224
+ params(standard: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Al::Standard), type: String).void
1225
+ }
1226
+ def initialize(standard: nil, type: nil); end
1135
1227
  end
1136
1228
  class Am < Stripe::RequestParams
1137
1229
  # Type of registration to be created in `country`.
@@ -1141,11 +1233,25 @@ module Stripe
1141
1233
  def initialize(type: nil); end
1142
1234
  end
1143
1235
  class Ao < Stripe::RequestParams
1236
+ class Standard < Stripe::RequestParams
1237
+ # Place of supply scheme used in an standard registration.
1238
+ sig { returns(T.nilable(String)) }
1239
+ attr_accessor :place_of_supply_scheme
1240
+ sig { params(place_of_supply_scheme: T.nilable(String)).void }
1241
+ def initialize(place_of_supply_scheme: nil); end
1242
+ end
1243
+ # Options for the standard registration.
1244
+ sig {
1245
+ returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Ao::Standard))
1246
+ }
1247
+ attr_accessor :standard
1144
1248
  # Type of registration to be created in `country`.
1145
1249
  sig { returns(String) }
1146
1250
  attr_accessor :type
1147
- sig { params(type: String).void }
1148
- def initialize(type: nil); end
1251
+ sig {
1252
+ params(standard: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Ao::Standard), type: String).void
1253
+ }
1254
+ def initialize(standard: nil, type: nil); end
1149
1255
  end
1150
1256
  class At < Stripe::RequestParams
1151
1257
  class Standard < Stripe::RequestParams
@@ -1169,18 +1275,46 @@ module Stripe
1169
1275
  def initialize(standard: nil, type: nil); end
1170
1276
  end
1171
1277
  class Au < Stripe::RequestParams
1278
+ class Standard < Stripe::RequestParams
1279
+ # Place of supply scheme used in an standard registration.
1280
+ sig { returns(T.nilable(String)) }
1281
+ attr_accessor :place_of_supply_scheme
1282
+ sig { params(place_of_supply_scheme: T.nilable(String)).void }
1283
+ def initialize(place_of_supply_scheme: nil); end
1284
+ end
1285
+ # Options for the standard registration.
1286
+ sig {
1287
+ returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Au::Standard))
1288
+ }
1289
+ attr_accessor :standard
1172
1290
  # Type of registration to be created in `country`.
1173
1291
  sig { returns(String) }
1174
1292
  attr_accessor :type
1175
- sig { params(type: String).void }
1176
- def initialize(type: nil); end
1293
+ sig {
1294
+ params(standard: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Au::Standard), type: String).void
1295
+ }
1296
+ def initialize(standard: nil, type: nil); end
1177
1297
  end
1178
1298
  class Aw < Stripe::RequestParams
1299
+ class Standard < Stripe::RequestParams
1300
+ # Place of supply scheme used in an standard registration.
1301
+ sig { returns(T.nilable(String)) }
1302
+ attr_accessor :place_of_supply_scheme
1303
+ sig { params(place_of_supply_scheme: T.nilable(String)).void }
1304
+ def initialize(place_of_supply_scheme: nil); end
1305
+ end
1306
+ # Options for the standard registration.
1307
+ sig {
1308
+ returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Aw::Standard))
1309
+ }
1310
+ attr_accessor :standard
1179
1311
  # Type of registration to be created in `country`.
1180
1312
  sig { returns(String) }
1181
1313
  attr_accessor :type
1182
- sig { params(type: String).void }
1183
- def initialize(type: nil); end
1314
+ sig {
1315
+ params(standard: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Aw::Standard), type: String).void
1316
+ }
1317
+ def initialize(standard: nil, type: nil); end
1184
1318
  end
1185
1319
  class Az < Stripe::RequestParams
1186
1320
  # Type of registration to be created in `country`.
@@ -1190,25 +1324,67 @@ module Stripe
1190
1324
  def initialize(type: nil); end
1191
1325
  end
1192
1326
  class Ba < Stripe::RequestParams
1327
+ class Standard < Stripe::RequestParams
1328
+ # Place of supply scheme used in an standard registration.
1329
+ sig { returns(T.nilable(String)) }
1330
+ attr_accessor :place_of_supply_scheme
1331
+ sig { params(place_of_supply_scheme: T.nilable(String)).void }
1332
+ def initialize(place_of_supply_scheme: nil); end
1333
+ end
1334
+ # Options for the standard registration.
1335
+ sig {
1336
+ returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Ba::Standard))
1337
+ }
1338
+ attr_accessor :standard
1193
1339
  # Type of registration to be created in `country`.
1194
1340
  sig { returns(String) }
1195
1341
  attr_accessor :type
1196
- sig { params(type: String).void }
1197
- def initialize(type: nil); end
1342
+ sig {
1343
+ params(standard: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Ba::Standard), type: String).void
1344
+ }
1345
+ def initialize(standard: nil, type: nil); end
1198
1346
  end
1199
1347
  class Bb < Stripe::RequestParams
1348
+ class Standard < Stripe::RequestParams
1349
+ # Place of supply scheme used in an standard registration.
1350
+ sig { returns(T.nilable(String)) }
1351
+ attr_accessor :place_of_supply_scheme
1352
+ sig { params(place_of_supply_scheme: T.nilable(String)).void }
1353
+ def initialize(place_of_supply_scheme: nil); end
1354
+ end
1355
+ # Options for the standard registration.
1356
+ sig {
1357
+ returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Bb::Standard))
1358
+ }
1359
+ attr_accessor :standard
1200
1360
  # Type of registration to be created in `country`.
1201
1361
  sig { returns(String) }
1202
1362
  attr_accessor :type
1203
- sig { params(type: String).void }
1204
- def initialize(type: nil); end
1363
+ sig {
1364
+ params(standard: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Bb::Standard), type: String).void
1365
+ }
1366
+ def initialize(standard: nil, type: nil); end
1205
1367
  end
1206
1368
  class Bd < Stripe::RequestParams
1369
+ class Standard < Stripe::RequestParams
1370
+ # Place of supply scheme used in an standard registration.
1371
+ sig { returns(T.nilable(String)) }
1372
+ attr_accessor :place_of_supply_scheme
1373
+ sig { params(place_of_supply_scheme: T.nilable(String)).void }
1374
+ def initialize(place_of_supply_scheme: nil); end
1375
+ end
1376
+ # Options for the standard registration.
1377
+ sig {
1378
+ returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Bd::Standard))
1379
+ }
1380
+ attr_accessor :standard
1207
1381
  # Type of registration to be created in `country`.
1208
1382
  sig { returns(String) }
1209
1383
  attr_accessor :type
1210
- sig { params(type: String).void }
1211
- def initialize(type: nil); end
1384
+ sig {
1385
+ params(standard: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Bd::Standard), type: String).void
1386
+ }
1387
+ def initialize(standard: nil, type: nil); end
1212
1388
  end
1213
1389
  class Be < Stripe::RequestParams
1214
1390
  class Standard < Stripe::RequestParams
@@ -1232,11 +1408,25 @@ module Stripe
1232
1408
  def initialize(standard: nil, type: nil); end
1233
1409
  end
1234
1410
  class Bf < Stripe::RequestParams
1411
+ class Standard < Stripe::RequestParams
1412
+ # Place of supply scheme used in an standard registration.
1413
+ sig { returns(T.nilable(String)) }
1414
+ attr_accessor :place_of_supply_scheme
1415
+ sig { params(place_of_supply_scheme: T.nilable(String)).void }
1416
+ def initialize(place_of_supply_scheme: nil); end
1417
+ end
1418
+ # Options for the standard registration.
1419
+ sig {
1420
+ returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Bf::Standard))
1421
+ }
1422
+ attr_accessor :standard
1235
1423
  # Type of registration to be created in `country`.
1236
1424
  sig { returns(String) }
1237
1425
  attr_accessor :type
1238
- sig { params(type: String).void }
1239
- def initialize(type: nil); end
1426
+ sig {
1427
+ params(standard: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Bf::Standard), type: String).void
1428
+ }
1429
+ def initialize(standard: nil, type: nil); end
1240
1430
  end
1241
1431
  class Bg < Stripe::RequestParams
1242
1432
  class Standard < Stripe::RequestParams
@@ -1260,11 +1450,25 @@ module Stripe
1260
1450
  def initialize(standard: nil, type: nil); end
1261
1451
  end
1262
1452
  class Bh < Stripe::RequestParams
1453
+ class Standard < Stripe::RequestParams
1454
+ # Place of supply scheme used in an standard registration.
1455
+ sig { returns(T.nilable(String)) }
1456
+ attr_accessor :place_of_supply_scheme
1457
+ sig { params(place_of_supply_scheme: T.nilable(String)).void }
1458
+ def initialize(place_of_supply_scheme: nil); end
1459
+ end
1460
+ # Options for the standard registration.
1461
+ sig {
1462
+ returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Bh::Standard))
1463
+ }
1464
+ attr_accessor :standard
1263
1465
  # Type of registration to be created in `country`.
1264
1466
  sig { returns(String) }
1265
1467
  attr_accessor :type
1266
- sig { params(type: String).void }
1267
- def initialize(type: nil); end
1468
+ sig {
1469
+ params(standard: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Bh::Standard), type: String).void
1470
+ }
1471
+ def initialize(standard: nil, type: nil); end
1268
1472
  end
1269
1473
  class Bj < Stripe::RequestParams
1270
1474
  # Type of registration to be created in `country`.
@@ -1274,11 +1478,25 @@ module Stripe
1274
1478
  def initialize(type: nil); end
1275
1479
  end
1276
1480
  class Bs < Stripe::RequestParams
1481
+ class Standard < Stripe::RequestParams
1482
+ # Place of supply scheme used in an standard registration.
1483
+ sig { returns(T.nilable(String)) }
1484
+ attr_accessor :place_of_supply_scheme
1485
+ sig { params(place_of_supply_scheme: T.nilable(String)).void }
1486
+ def initialize(place_of_supply_scheme: nil); end
1487
+ end
1488
+ # Options for the standard registration.
1489
+ sig {
1490
+ returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Bs::Standard))
1491
+ }
1492
+ attr_accessor :standard
1277
1493
  # Type of registration to be created in `country`.
1278
1494
  sig { returns(String) }
1279
1495
  attr_accessor :type
1280
- sig { params(type: String).void }
1281
- def initialize(type: nil); end
1496
+ sig {
1497
+ params(standard: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Bs::Standard), type: String).void
1498
+ }
1499
+ def initialize(standard: nil, type: nil); end
1282
1500
  end
1283
1501
  class By < Stripe::RequestParams
1284
1502
  # Type of registration to be created in `country`.
@@ -1309,18 +1527,46 @@ module Stripe
1309
1527
  def initialize(province_standard: nil, type: nil); end
1310
1528
  end
1311
1529
  class Cd < Stripe::RequestParams
1530
+ class Standard < Stripe::RequestParams
1531
+ # Place of supply scheme used in an standard registration.
1532
+ sig { returns(T.nilable(String)) }
1533
+ attr_accessor :place_of_supply_scheme
1534
+ sig { params(place_of_supply_scheme: T.nilable(String)).void }
1535
+ def initialize(place_of_supply_scheme: nil); end
1536
+ end
1537
+ # Options for the standard registration.
1538
+ sig {
1539
+ returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Cd::Standard))
1540
+ }
1541
+ attr_accessor :standard
1312
1542
  # Type of registration to be created in `country`.
1313
1543
  sig { returns(String) }
1314
1544
  attr_accessor :type
1315
- sig { params(type: String).void }
1316
- def initialize(type: nil); end
1545
+ sig {
1546
+ params(standard: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Cd::Standard), type: String).void
1547
+ }
1548
+ def initialize(standard: nil, type: nil); end
1317
1549
  end
1318
1550
  class Ch < Stripe::RequestParams
1551
+ class Standard < Stripe::RequestParams
1552
+ # Place of supply scheme used in an standard registration.
1553
+ sig { returns(T.nilable(String)) }
1554
+ attr_accessor :place_of_supply_scheme
1555
+ sig { params(place_of_supply_scheme: T.nilable(String)).void }
1556
+ def initialize(place_of_supply_scheme: nil); end
1557
+ end
1558
+ # Options for the standard registration.
1559
+ sig {
1560
+ returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Ch::Standard))
1561
+ }
1562
+ attr_accessor :standard
1319
1563
  # Type of registration to be created in `country`.
1320
1564
  sig { returns(String) }
1321
1565
  attr_accessor :type
1322
- sig { params(type: String).void }
1323
- def initialize(type: nil); end
1566
+ sig {
1567
+ params(standard: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Ch::Standard), type: String).void
1568
+ }
1569
+ def initialize(standard: nil, type: nil); end
1324
1570
  end
1325
1571
  class Cl < Stripe::RequestParams
1326
1572
  # Type of registration to be created in `country`.
@@ -1498,11 +1744,25 @@ module Stripe
1498
1744
  def initialize(standard: nil, type: nil); end
1499
1745
  end
1500
1746
  class Et < Stripe::RequestParams
1747
+ class Standard < Stripe::RequestParams
1748
+ # Place of supply scheme used in an standard registration.
1749
+ sig { returns(T.nilable(String)) }
1750
+ attr_accessor :place_of_supply_scheme
1751
+ sig { params(place_of_supply_scheme: T.nilable(String)).void }
1752
+ def initialize(place_of_supply_scheme: nil); end
1753
+ end
1754
+ # Options for the standard registration.
1755
+ sig {
1756
+ returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Et::Standard))
1757
+ }
1758
+ attr_accessor :standard
1501
1759
  # Type of registration to be created in `country`.
1502
1760
  sig { returns(String) }
1503
1761
  attr_accessor :type
1504
- sig { params(type: String).void }
1505
- def initialize(type: nil); end
1762
+ sig {
1763
+ params(standard: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Et::Standard), type: String).void
1764
+ }
1765
+ def initialize(standard: nil, type: nil); end
1506
1766
  end
1507
1767
  class Fi < Stripe::RequestParams
1508
1768
  class Standard < Stripe::RequestParams
@@ -1547,11 +1807,25 @@ module Stripe
1547
1807
  def initialize(standard: nil, type: nil); end
1548
1808
  end
1549
1809
  class Gb < Stripe::RequestParams
1810
+ class Standard < Stripe::RequestParams
1811
+ # Place of supply scheme used in an standard registration.
1812
+ sig { returns(T.nilable(String)) }
1813
+ attr_accessor :place_of_supply_scheme
1814
+ sig { params(place_of_supply_scheme: T.nilable(String)).void }
1815
+ def initialize(place_of_supply_scheme: nil); end
1816
+ end
1817
+ # Options for the standard registration.
1818
+ sig {
1819
+ returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Gb::Standard))
1820
+ }
1821
+ attr_accessor :standard
1550
1822
  # Type of registration to be created in `country`.
1551
1823
  sig { returns(String) }
1552
1824
  attr_accessor :type
1553
- sig { params(type: String).void }
1554
- def initialize(type: nil); end
1825
+ sig {
1826
+ params(standard: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Gb::Standard), type: String).void
1827
+ }
1828
+ def initialize(standard: nil, type: nil); end
1555
1829
  end
1556
1830
  class Ge < Stripe::RequestParams
1557
1831
  # Type of registration to be created in `country`.
@@ -1561,11 +1835,25 @@ module Stripe
1561
1835
  def initialize(type: nil); end
1562
1836
  end
1563
1837
  class Gn < Stripe::RequestParams
1838
+ class Standard < Stripe::RequestParams
1839
+ # Place of supply scheme used in an standard registration.
1840
+ sig { returns(T.nilable(String)) }
1841
+ attr_accessor :place_of_supply_scheme
1842
+ sig { params(place_of_supply_scheme: T.nilable(String)).void }
1843
+ def initialize(place_of_supply_scheme: nil); end
1844
+ end
1845
+ # Options for the standard registration.
1846
+ sig {
1847
+ returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Gn::Standard))
1848
+ }
1849
+ attr_accessor :standard
1564
1850
  # Type of registration to be created in `country`.
1565
1851
  sig { returns(String) }
1566
1852
  attr_accessor :type
1567
- sig { params(type: String).void }
1568
- def initialize(type: nil); end
1853
+ sig {
1854
+ params(standard: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Gn::Standard), type: String).void
1855
+ }
1856
+ def initialize(standard: nil, type: nil); end
1569
1857
  end
1570
1858
  class Gr < Stripe::RequestParams
1571
1859
  class Standard < Stripe::RequestParams
@@ -1666,11 +1954,25 @@ module Stripe
1666
1954
  def initialize(type: nil); end
1667
1955
  end
1668
1956
  class Is < Stripe::RequestParams
1957
+ class Standard < Stripe::RequestParams
1958
+ # Place of supply scheme used in an standard registration.
1959
+ sig { returns(T.nilable(String)) }
1960
+ attr_accessor :place_of_supply_scheme
1961
+ sig { params(place_of_supply_scheme: T.nilable(String)).void }
1962
+ def initialize(place_of_supply_scheme: nil); end
1963
+ end
1964
+ # Options for the standard registration.
1965
+ sig {
1966
+ returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Is::Standard))
1967
+ }
1968
+ attr_accessor :standard
1669
1969
  # Type of registration to be created in `country`.
1670
1970
  sig { returns(String) }
1671
1971
  attr_accessor :type
1672
- sig { params(type: String).void }
1673
- def initialize(type: nil); end
1972
+ sig {
1973
+ params(standard: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Is::Standard), type: String).void
1974
+ }
1975
+ def initialize(standard: nil, type: nil); end
1674
1976
  end
1675
1977
  class It < Stripe::RequestParams
1676
1978
  class Standard < Stripe::RequestParams
@@ -1694,11 +1996,25 @@ module Stripe
1694
1996
  def initialize(standard: nil, type: nil); end
1695
1997
  end
1696
1998
  class Jp < Stripe::RequestParams
1999
+ class Standard < Stripe::RequestParams
2000
+ # Place of supply scheme used in an standard registration.
2001
+ sig { returns(T.nilable(String)) }
2002
+ attr_accessor :place_of_supply_scheme
2003
+ sig { params(place_of_supply_scheme: T.nilable(String)).void }
2004
+ def initialize(place_of_supply_scheme: nil); end
2005
+ end
2006
+ # Options for the standard registration.
2007
+ sig {
2008
+ returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Jp::Standard))
2009
+ }
2010
+ attr_accessor :standard
1697
2011
  # Type of registration to be created in `country`.
1698
2012
  sig { returns(String) }
1699
2013
  attr_accessor :type
1700
- sig { params(type: String).void }
1701
- def initialize(type: nil); end
2014
+ sig {
2015
+ params(standard: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Jp::Standard), type: String).void
2016
+ }
2017
+ def initialize(standard: nil, type: nil); end
1702
2018
  end
1703
2019
  class Ke < Stripe::RequestParams
1704
2020
  # Type of registration to be created in `country`.
@@ -1820,25 +2136,67 @@ module Stripe
1820
2136
  def initialize(type: nil); end
1821
2137
  end
1822
2138
  class Me < Stripe::RequestParams
2139
+ class Standard < Stripe::RequestParams
2140
+ # Place of supply scheme used in an standard registration.
2141
+ sig { returns(T.nilable(String)) }
2142
+ attr_accessor :place_of_supply_scheme
2143
+ sig { params(place_of_supply_scheme: T.nilable(String)).void }
2144
+ def initialize(place_of_supply_scheme: nil); end
2145
+ end
2146
+ # Options for the standard registration.
2147
+ sig {
2148
+ returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Me::Standard))
2149
+ }
2150
+ attr_accessor :standard
1823
2151
  # Type of registration to be created in `country`.
1824
2152
  sig { returns(String) }
1825
2153
  attr_accessor :type
1826
- sig { params(type: String).void }
1827
- def initialize(type: nil); end
2154
+ sig {
2155
+ params(standard: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Me::Standard), type: String).void
2156
+ }
2157
+ def initialize(standard: nil, type: nil); end
1828
2158
  end
1829
2159
  class Mk < Stripe::RequestParams
2160
+ class Standard < Stripe::RequestParams
2161
+ # Place of supply scheme used in an standard registration.
2162
+ sig { returns(T.nilable(String)) }
2163
+ attr_accessor :place_of_supply_scheme
2164
+ sig { params(place_of_supply_scheme: T.nilable(String)).void }
2165
+ def initialize(place_of_supply_scheme: nil); end
2166
+ end
2167
+ # Options for the standard registration.
2168
+ sig {
2169
+ returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Mk::Standard))
2170
+ }
2171
+ attr_accessor :standard
1830
2172
  # Type of registration to be created in `country`.
1831
2173
  sig { returns(String) }
1832
2174
  attr_accessor :type
1833
- sig { params(type: String).void }
1834
- def initialize(type: nil); end
2175
+ sig {
2176
+ params(standard: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Mk::Standard), type: String).void
2177
+ }
2178
+ def initialize(standard: nil, type: nil); end
1835
2179
  end
1836
2180
  class Mr < Stripe::RequestParams
2181
+ class Standard < Stripe::RequestParams
2182
+ # Place of supply scheme used in an standard registration.
2183
+ sig { returns(T.nilable(String)) }
2184
+ attr_accessor :place_of_supply_scheme
2185
+ sig { params(place_of_supply_scheme: T.nilable(String)).void }
2186
+ def initialize(place_of_supply_scheme: nil); end
2187
+ end
2188
+ # Options for the standard registration.
2189
+ sig {
2190
+ returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Mr::Standard))
2191
+ }
2192
+ attr_accessor :standard
1837
2193
  # Type of registration to be created in `country`.
1838
2194
  sig { returns(String) }
1839
2195
  attr_accessor :type
1840
- sig { params(type: String).void }
1841
- def initialize(type: nil); end
2196
+ sig {
2197
+ params(standard: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Mr::Standard), type: String).void
2198
+ }
2199
+ def initialize(standard: nil, type: nil); end
1842
2200
  end
1843
2201
  class Mt < Stripe::RequestParams
1844
2202
  class Standard < Stripe::RequestParams
@@ -1904,11 +2262,25 @@ module Stripe
1904
2262
  def initialize(standard: nil, type: nil); end
1905
2263
  end
1906
2264
  class No < Stripe::RequestParams
2265
+ class Standard < Stripe::RequestParams
2266
+ # Place of supply scheme used in an standard registration.
2267
+ sig { returns(T.nilable(String)) }
2268
+ attr_accessor :place_of_supply_scheme
2269
+ sig { params(place_of_supply_scheme: T.nilable(String)).void }
2270
+ def initialize(place_of_supply_scheme: nil); end
2271
+ end
2272
+ # Options for the standard registration.
2273
+ sig {
2274
+ returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::No::Standard))
2275
+ }
2276
+ attr_accessor :standard
1907
2277
  # Type of registration to be created in `country`.
1908
2278
  sig { returns(String) }
1909
2279
  attr_accessor :type
1910
- sig { params(type: String).void }
1911
- def initialize(type: nil); end
2280
+ sig {
2281
+ params(standard: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::No::Standard), type: String).void
2282
+ }
2283
+ def initialize(standard: nil, type: nil); end
1912
2284
  end
1913
2285
  class Np < Stripe::RequestParams
1914
2286
  # Type of registration to be created in `country`.
@@ -1918,18 +2290,46 @@ module Stripe
1918
2290
  def initialize(type: nil); end
1919
2291
  end
1920
2292
  class Nz < Stripe::RequestParams
2293
+ class Standard < Stripe::RequestParams
2294
+ # Place of supply scheme used in an standard registration.
2295
+ sig { returns(T.nilable(String)) }
2296
+ attr_accessor :place_of_supply_scheme
2297
+ sig { params(place_of_supply_scheme: T.nilable(String)).void }
2298
+ def initialize(place_of_supply_scheme: nil); end
2299
+ end
2300
+ # Options for the standard registration.
2301
+ sig {
2302
+ returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Nz::Standard))
2303
+ }
2304
+ attr_accessor :standard
1921
2305
  # Type of registration to be created in `country`.
1922
2306
  sig { returns(String) }
1923
2307
  attr_accessor :type
1924
- sig { params(type: String).void }
1925
- def initialize(type: nil); end
2308
+ sig {
2309
+ params(standard: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Nz::Standard), type: String).void
2310
+ }
2311
+ def initialize(standard: nil, type: nil); end
1926
2312
  end
1927
2313
  class Om < Stripe::RequestParams
2314
+ class Standard < Stripe::RequestParams
2315
+ # Place of supply scheme used in an standard registration.
2316
+ sig { returns(T.nilable(String)) }
2317
+ attr_accessor :place_of_supply_scheme
2318
+ sig { params(place_of_supply_scheme: T.nilable(String)).void }
2319
+ def initialize(place_of_supply_scheme: nil); end
2320
+ end
2321
+ # Options for the standard registration.
2322
+ sig {
2323
+ returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Om::Standard))
2324
+ }
2325
+ attr_accessor :standard
1928
2326
  # Type of registration to be created in `country`.
1929
2327
  sig { returns(String) }
1930
2328
  attr_accessor :type
1931
- sig { params(type: String).void }
1932
- def initialize(type: nil); end
2329
+ sig {
2330
+ params(standard: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Om::Standard), type: String).void
2331
+ }
2332
+ def initialize(standard: nil, type: nil); end
1933
2333
  end
1934
2334
  class Pe < Stripe::RequestParams
1935
2335
  # Type of registration to be created in `country`.
@@ -2009,11 +2409,25 @@ module Stripe
2009
2409
  def initialize(standard: nil, type: nil); end
2010
2410
  end
2011
2411
  class Rs < Stripe::RequestParams
2412
+ class Standard < Stripe::RequestParams
2413
+ # Place of supply scheme used in an standard registration.
2414
+ sig { returns(T.nilable(String)) }
2415
+ attr_accessor :place_of_supply_scheme
2416
+ sig { params(place_of_supply_scheme: T.nilable(String)).void }
2417
+ def initialize(place_of_supply_scheme: nil); end
2418
+ end
2419
+ # Options for the standard registration.
2420
+ sig {
2421
+ returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Rs::Standard))
2422
+ }
2423
+ attr_accessor :standard
2012
2424
  # Type of registration to be created in `country`.
2013
2425
  sig { returns(String) }
2014
2426
  attr_accessor :type
2015
- sig { params(type: String).void }
2016
- def initialize(type: nil); end
2427
+ sig {
2428
+ params(standard: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Rs::Standard), type: String).void
2429
+ }
2430
+ def initialize(standard: nil, type: nil); end
2017
2431
  end
2018
2432
  class Ru < Stripe::RequestParams
2019
2433
  # Type of registration to be created in `country`.
@@ -2051,11 +2465,25 @@ module Stripe
2051
2465
  def initialize(standard: nil, type: nil); end
2052
2466
  end
2053
2467
  class Sg < Stripe::RequestParams
2468
+ class Standard < Stripe::RequestParams
2469
+ # Place of supply scheme used in an standard registration.
2470
+ sig { returns(T.nilable(String)) }
2471
+ attr_accessor :place_of_supply_scheme
2472
+ sig { params(place_of_supply_scheme: T.nilable(String)).void }
2473
+ def initialize(place_of_supply_scheme: nil); end
2474
+ end
2475
+ # Options for the standard registration.
2476
+ sig {
2477
+ returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Sg::Standard))
2478
+ }
2479
+ attr_accessor :standard
2054
2480
  # Type of registration to be created in `country`.
2055
2481
  sig { returns(String) }
2056
2482
  attr_accessor :type
2057
- sig { params(type: String).void }
2058
- def initialize(type: nil); end
2483
+ sig {
2484
+ params(standard: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Sg::Standard), type: String).void
2485
+ }
2486
+ def initialize(standard: nil, type: nil); end
2059
2487
  end
2060
2488
  class Si < Stripe::RequestParams
2061
2489
  class Standard < Stripe::RequestParams
@@ -2107,11 +2535,25 @@ module Stripe
2107
2535
  def initialize(type: nil); end
2108
2536
  end
2109
2537
  class Sr < Stripe::RequestParams
2538
+ class Standard < Stripe::RequestParams
2539
+ # Place of supply scheme used in an standard registration.
2540
+ sig { returns(T.nilable(String)) }
2541
+ attr_accessor :place_of_supply_scheme
2542
+ sig { params(place_of_supply_scheme: T.nilable(String)).void }
2543
+ def initialize(place_of_supply_scheme: nil); end
2544
+ end
2545
+ # Options for the standard registration.
2546
+ sig {
2547
+ returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Sr::Standard))
2548
+ }
2549
+ attr_accessor :standard
2110
2550
  # Type of registration to be created in `country`.
2111
2551
  sig { returns(String) }
2112
2552
  attr_accessor :type
2113
- sig { params(type: String).void }
2114
- def initialize(type: nil); end
2553
+ sig {
2554
+ params(standard: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Sr::Standard), type: String).void
2555
+ }
2556
+ def initialize(standard: nil, type: nil); end
2115
2557
  end
2116
2558
  class Th < Stripe::RequestParams
2117
2559
  # Type of registration to be created in `country`.
@@ -2224,11 +2666,25 @@ module Stripe
2224
2666
  ); end
2225
2667
  end
2226
2668
  class Uy < Stripe::RequestParams
2669
+ class Standard < Stripe::RequestParams
2670
+ # Place of supply scheme used in an standard registration.
2671
+ sig { returns(T.nilable(String)) }
2672
+ attr_accessor :place_of_supply_scheme
2673
+ sig { params(place_of_supply_scheme: T.nilable(String)).void }
2674
+ def initialize(place_of_supply_scheme: nil); end
2675
+ end
2676
+ # Options for the standard registration.
2677
+ sig {
2678
+ returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Uy::Standard))
2679
+ }
2680
+ attr_accessor :standard
2227
2681
  # Type of registration to be created in `country`.
2228
2682
  sig { returns(String) }
2229
2683
  attr_accessor :type
2230
- sig { params(type: String).void }
2231
- def initialize(type: nil); end
2684
+ sig {
2685
+ params(standard: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Uy::Standard), type: String).void
2686
+ }
2687
+ def initialize(standard: nil, type: nil); end
2232
2688
  end
2233
2689
  class Uz < Stripe::RequestParams
2234
2690
  # Type of registration to be created in `country`.
@@ -2245,11 +2701,25 @@ module Stripe
2245
2701
  def initialize(type: nil); end
2246
2702
  end
2247
2703
  class Za < Stripe::RequestParams
2704
+ class Standard < Stripe::RequestParams
2705
+ # Place of supply scheme used in an standard registration.
2706
+ sig { returns(T.nilable(String)) }
2707
+ attr_accessor :place_of_supply_scheme
2708
+ sig { params(place_of_supply_scheme: T.nilable(String)).void }
2709
+ def initialize(place_of_supply_scheme: nil); end
2710
+ end
2711
+ # Options for the standard registration.
2712
+ sig {
2713
+ returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Za::Standard))
2714
+ }
2715
+ attr_accessor :standard
2248
2716
  # Type of registration to be created in `country`.
2249
2717
  sig { returns(String) }
2250
2718
  attr_accessor :type
2251
- sig { params(type: String).void }
2252
- def initialize(type: nil); end
2719
+ sig {
2720
+ params(standard: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Za::Standard), type: String).void
2721
+ }
2722
+ def initialize(standard: nil, type: nil); end
2253
2723
  end
2254
2724
  class Zm < Stripe::RequestParams
2255
2725
  # Type of registration to be created in `country`.
@@ -2259,11 +2729,25 @@ module Stripe
2259
2729
  def initialize(type: nil); end
2260
2730
  end
2261
2731
  class Zw < Stripe::RequestParams
2732
+ class Standard < Stripe::RequestParams
2733
+ # Place of supply scheme used in an standard registration.
2734
+ sig { returns(T.nilable(String)) }
2735
+ attr_accessor :place_of_supply_scheme
2736
+ sig { params(place_of_supply_scheme: T.nilable(String)).void }
2737
+ def initialize(place_of_supply_scheme: nil); end
2738
+ end
2739
+ # Options for the standard registration.
2740
+ sig {
2741
+ returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Zw::Standard))
2742
+ }
2743
+ attr_accessor :standard
2262
2744
  # Type of registration to be created in `country`.
2263
2745
  sig { returns(String) }
2264
2746
  attr_accessor :type
2265
- sig { params(type: String).void }
2266
- def initialize(type: nil); end
2747
+ sig {
2748
+ params(standard: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Zw::Standard), type: String).void
2749
+ }
2750
+ def initialize(standard: nil, type: nil); end
2267
2751
  end
2268
2752
  # Options for the registration in AE.
2269
2753
  sig { returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Ae)) }