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.
- checksums.yaml +4 -4
- data/API_VERSION +1 -1
- data/CHANGELOG.md +21 -1
- data/OPENAPI_VERSION +1 -1
- data/VERSION +1 -1
- data/lib/stripe/api_version.rb +1 -1
- data/lib/stripe/resources/account.rb +5 -5
- data/lib/stripe/resources/account_link.rb +3 -1
- data/lib/stripe/resources/account_session.rb +51 -0
- data/lib/stripe/resources/billing/credit_grant.rb +1 -1
- data/lib/stripe/resources/billing_portal/configuration.rb +46 -2
- data/lib/stripe/resources/charge.rb +7 -5
- data/lib/stripe/resources/checkout/session.rb +32 -4
- data/lib/stripe/resources/confirmation_token.rb +3 -3
- data/lib/stripe/resources/customer.rb +1 -1
- data/lib/stripe/resources/dispute.rb +1 -1
- data/lib/stripe/resources/event.rb +14 -26
- data/lib/stripe/resources/invoice.rb +24 -8
- data/lib/stripe/resources/invoice_item.rb +1 -1
- data/lib/stripe/resources/payment_intent.rb +14 -4
- data/lib/stripe/resources/payment_link.rb +83 -5
- data/lib/stripe/resources/payment_method.rb +4 -4
- data/lib/stripe/resources/quote.rb +1 -1
- data/lib/stripe/resources/radar/value_list.rb +2 -2
- data/lib/stripe/resources/refund.rb +1 -1
- data/lib/stripe/resources/review.rb +2 -2
- data/lib/stripe/resources/setup_attempt.rb +1 -1
- data/lib/stripe/resources/subscription.rb +2 -2
- data/lib/stripe/resources/subscription_item.rb +2 -2
- data/lib/stripe/resources/subscription_schedule.rb +35 -3
- data/lib/stripe/resources/tax/registration.rb +408 -30
- data/lib/stripe/resources/terminal/configuration.rb +196 -0
- data/lib/stripe/services/account_link_service.rb +3 -1
- data/lib/stripe/services/account_service.rb +3 -3
- data/lib/stripe/services/account_session_service.rb +34 -0
- data/lib/stripe/services/billing/credit_grant_service.rb +1 -1
- data/lib/stripe/services/billing_portal/configuration_service.rb +36 -2
- data/lib/stripe/services/checkout/session_service.rb +19 -3
- data/lib/stripe/services/invoice_item_service.rb +1 -1
- data/lib/stripe/services/invoice_service.rb +24 -8
- data/lib/stripe/services/payment_intent_service.rb +8 -3
- data/lib/stripe/services/payment_link_service.rb +81 -5
- data/lib/stripe/services/payment_method_service.rb +1 -1
- data/lib/stripe/services/quote_service.rb +1 -1
- data/lib/stripe/services/radar/value_list_service.rb +1 -1
- data/lib/stripe/services/subscription_item_service.rb +2 -2
- data/lib/stripe/services/subscription_schedule_service.rb +35 -3
- data/lib/stripe/services/subscription_service.rb +2 -2
- data/lib/stripe/services/tax/registration_service.rb +360 -30
- data/lib/stripe/services/terminal/configuration_service.rb +152 -0
- data/lib/stripe/version.rb +1 -1
- data/rbi/stripe/resources/account.rbi +5 -5
- data/rbi/stripe/resources/account_link.rbi +3 -1
- data/rbi/stripe/resources/account_session.rbi +62 -1
- data/rbi/stripe/resources/billing/credit_grant.rbi +1 -1
- data/rbi/stripe/resources/billing_portal/configuration.rbi +62 -4
- data/rbi/stripe/resources/charge.rbi +8 -5
- data/rbi/stripe/resources/checkout/session.rbi +42 -7
- data/rbi/stripe/resources/confirmation_token.rbi +3 -3
- data/rbi/stripe/resources/customer.rbi +1 -1
- data/rbi/stripe/resources/dispute.rbi +1 -1
- data/rbi/stripe/resources/event.rbi +14 -26
- data/rbi/stripe/resources/invoice.rbi +27 -11
- data/rbi/stripe/resources/invoice_item.rbi +1 -1
- data/rbi/stripe/resources/payment_intent.rbi +14 -4
- data/rbi/stripe/resources/payment_link.rbi +101 -9
- data/rbi/stripe/resources/payment_method.rbi +4 -4
- data/rbi/stripe/resources/quote.rbi +1 -1
- data/rbi/stripe/resources/radar/value_list.rbi +2 -2
- data/rbi/stripe/resources/refund.rbi +1 -1
- data/rbi/stripe/resources/review.rbi +2 -2
- data/rbi/stripe/resources/setup_attempt.rbi +1 -1
- data/rbi/stripe/resources/subscription.rbi +6 -6
- data/rbi/stripe/resources/subscription_item.rbi +2 -2
- data/rbi/stripe/resources/subscription_schedule.rbi +33 -5
- data/rbi/stripe/resources/tax/registration.rbi +544 -60
- data/rbi/stripe/resources/terminal/configuration.rbi +210 -2
- data/rbi/stripe/services/account_link_service.rbi +3 -1
- data/rbi/stripe/services/account_service.rbi +3 -3
- data/rbi/stripe/services/account_session_service.rbi +40 -1
- data/rbi/stripe/services/billing/credit_grant_service.rbi +1 -1
- data/rbi/stripe/services/billing_portal/configuration_service.rbi +48 -4
- data/rbi/stripe/services/checkout/session_service.rbi +26 -6
- data/rbi/stripe/services/invoice_item_service.rbi +1 -1
- data/rbi/stripe/services/invoice_service.rbi +27 -11
- data/rbi/stripe/services/payment_intent_service.rbi +8 -3
- data/rbi/stripe/services/payment_link_service.rbi +98 -9
- data/rbi/stripe/services/payment_method_service.rbi +1 -1
- data/rbi/stripe/services/quote_service.rbi +1 -1
- data/rbi/stripe/services/radar/value_list_service.rbi +1 -1
- data/rbi/stripe/services/subscription_item_service.rbi +2 -2
- data/rbi/stripe/services/subscription_schedule_service.rbi +37 -5
- data/rbi/stripe/services/subscription_service.rbi +6 -6
- data/rbi/stripe/services/tax/registration_service.rbi +480 -60
- data/rbi/stripe/services/terminal/configuration_service.rbi +170 -2
- metadata +2 -2
@@ -20,6 +20,12 @@ module Stripe
|
|
20
20
|
|
21
21
|
class CountryOptions < Stripe::StripeObject
|
22
22
|
class Ae < Stripe::StripeObject
|
23
|
+
class Standard < Stripe::StripeObject
|
24
|
+
# Place of supply scheme used in an Default standard registration.
|
25
|
+
attr_reader :place_of_supply_scheme
|
26
|
+
end
|
27
|
+
# Attribute for field standard
|
28
|
+
attr_reader :standard
|
23
29
|
# Type of registration in `country`.
|
24
30
|
attr_reader :type
|
25
31
|
end
|
@@ -51,6 +57,12 @@ module Stripe
|
|
51
57
|
end
|
52
58
|
|
53
59
|
class Au < Stripe::StripeObject
|
60
|
+
class Standard < Stripe::StripeObject
|
61
|
+
# Place of supply scheme used in an Default standard registration.
|
62
|
+
attr_reader :place_of_supply_scheme
|
63
|
+
end
|
64
|
+
# Attribute for field standard
|
65
|
+
attr_reader :standard
|
54
66
|
# Type of registration in `country`.
|
55
67
|
attr_reader :type
|
56
68
|
end
|
@@ -144,6 +156,12 @@ module Stripe
|
|
144
156
|
end
|
145
157
|
|
146
158
|
class Ch < Stripe::StripeObject
|
159
|
+
class Standard < Stripe::StripeObject
|
160
|
+
# Place of supply scheme used in an Default standard registration.
|
161
|
+
attr_reader :place_of_supply_scheme
|
162
|
+
end
|
163
|
+
# Attribute for field standard
|
164
|
+
attr_reader :standard
|
147
165
|
# Type of registration in `country`.
|
148
166
|
attr_reader :type
|
149
167
|
end
|
@@ -277,6 +295,12 @@ module Stripe
|
|
277
295
|
end
|
278
296
|
|
279
297
|
class Gb < Stripe::StripeObject
|
298
|
+
class Standard < Stripe::StripeObject
|
299
|
+
# Place of supply scheme used in an Default standard registration.
|
300
|
+
attr_reader :place_of_supply_scheme
|
301
|
+
end
|
302
|
+
# Attribute for field standard
|
303
|
+
attr_reader :standard
|
280
304
|
# Type of registration in `country`.
|
281
305
|
attr_reader :type
|
282
306
|
end
|
@@ -362,6 +386,12 @@ module Stripe
|
|
362
386
|
end
|
363
387
|
|
364
388
|
class Jp < Stripe::StripeObject
|
389
|
+
class Standard < Stripe::StripeObject
|
390
|
+
# Place of supply scheme used in an Default standard registration.
|
391
|
+
attr_reader :place_of_supply_scheme
|
392
|
+
end
|
393
|
+
# Attribute for field standard
|
394
|
+
attr_reader :standard
|
365
395
|
# Type of registration in `country`.
|
366
396
|
attr_reader :type
|
367
397
|
end
|
@@ -492,6 +522,12 @@ module Stripe
|
|
492
522
|
end
|
493
523
|
|
494
524
|
class No < Stripe::StripeObject
|
525
|
+
class Standard < Stripe::StripeObject
|
526
|
+
# Place of supply scheme used in an Default standard registration.
|
527
|
+
attr_reader :place_of_supply_scheme
|
528
|
+
end
|
529
|
+
# Attribute for field standard
|
530
|
+
attr_reader :standard
|
495
531
|
# Type of registration in `country`.
|
496
532
|
attr_reader :type
|
497
533
|
end
|
@@ -502,6 +538,12 @@ module Stripe
|
|
502
538
|
end
|
503
539
|
|
504
540
|
class Nz < Stripe::StripeObject
|
541
|
+
class Standard < Stripe::StripeObject
|
542
|
+
# Place of supply scheme used in an Default standard registration.
|
543
|
+
attr_reader :place_of_supply_scheme
|
544
|
+
end
|
545
|
+
# Attribute for field standard
|
546
|
+
attr_reader :standard
|
505
547
|
# Type of registration in `country`.
|
506
548
|
attr_reader :type
|
507
549
|
end
|
@@ -581,6 +623,12 @@ module Stripe
|
|
581
623
|
end
|
582
624
|
|
583
625
|
class Sg < Stripe::StripeObject
|
626
|
+
class Standard < Stripe::StripeObject
|
627
|
+
# Place of supply scheme used in an Default standard registration.
|
628
|
+
attr_reader :place_of_supply_scheme
|
629
|
+
end
|
630
|
+
# Attribute for field standard
|
631
|
+
attr_reader :standard
|
584
632
|
# Type of registration in `country`.
|
585
633
|
attr_reader :type
|
586
634
|
end
|
@@ -939,19 +987,41 @@ module Stripe
|
|
939
987
|
class CreateParams < Stripe::RequestParams
|
940
988
|
class CountryOptions < Stripe::RequestParams
|
941
989
|
class Ae < Stripe::RequestParams
|
990
|
+
class Standard < Stripe::RequestParams
|
991
|
+
# Place of supply scheme used in an standard registration.
|
992
|
+
attr_accessor :place_of_supply_scheme
|
993
|
+
|
994
|
+
def initialize(place_of_supply_scheme: nil)
|
995
|
+
@place_of_supply_scheme = place_of_supply_scheme
|
996
|
+
end
|
997
|
+
end
|
998
|
+
# Options for the standard registration.
|
999
|
+
attr_accessor :standard
|
942
1000
|
# Type of registration to be created in `country`.
|
943
1001
|
attr_accessor :type
|
944
1002
|
|
945
|
-
def initialize(type: nil)
|
1003
|
+
def initialize(standard: nil, type: nil)
|
1004
|
+
@standard = standard
|
946
1005
|
@type = type
|
947
1006
|
end
|
948
1007
|
end
|
949
1008
|
|
950
1009
|
class Al < Stripe::RequestParams
|
1010
|
+
class Standard < Stripe::RequestParams
|
1011
|
+
# Place of supply scheme used in an standard registration.
|
1012
|
+
attr_accessor :place_of_supply_scheme
|
1013
|
+
|
1014
|
+
def initialize(place_of_supply_scheme: nil)
|
1015
|
+
@place_of_supply_scheme = place_of_supply_scheme
|
1016
|
+
end
|
1017
|
+
end
|
1018
|
+
# Options for the standard registration.
|
1019
|
+
attr_accessor :standard
|
951
1020
|
# Type of registration to be created in `country`.
|
952
1021
|
attr_accessor :type
|
953
1022
|
|
954
|
-
def initialize(type: nil)
|
1023
|
+
def initialize(standard: nil, type: nil)
|
1024
|
+
@standard = standard
|
955
1025
|
@type = type
|
956
1026
|
end
|
957
1027
|
end
|
@@ -966,10 +1036,21 @@ module Stripe
|
|
966
1036
|
end
|
967
1037
|
|
968
1038
|
class Ao < Stripe::RequestParams
|
1039
|
+
class Standard < Stripe::RequestParams
|
1040
|
+
# Place of supply scheme used in an standard registration.
|
1041
|
+
attr_accessor :place_of_supply_scheme
|
1042
|
+
|
1043
|
+
def initialize(place_of_supply_scheme: nil)
|
1044
|
+
@place_of_supply_scheme = place_of_supply_scheme
|
1045
|
+
end
|
1046
|
+
end
|
1047
|
+
# Options for the standard registration.
|
1048
|
+
attr_accessor :standard
|
969
1049
|
# Type of registration to be created in `country`.
|
970
1050
|
attr_accessor :type
|
971
1051
|
|
972
|
-
def initialize(type: nil)
|
1052
|
+
def initialize(standard: nil, type: nil)
|
1053
|
+
@standard = standard
|
973
1054
|
@type = type
|
974
1055
|
end
|
975
1056
|
end
|
@@ -995,19 +1076,41 @@ module Stripe
|
|
995
1076
|
end
|
996
1077
|
|
997
1078
|
class Au < Stripe::RequestParams
|
1079
|
+
class Standard < Stripe::RequestParams
|
1080
|
+
# Place of supply scheme used in an standard registration.
|
1081
|
+
attr_accessor :place_of_supply_scheme
|
1082
|
+
|
1083
|
+
def initialize(place_of_supply_scheme: nil)
|
1084
|
+
@place_of_supply_scheme = place_of_supply_scheme
|
1085
|
+
end
|
1086
|
+
end
|
1087
|
+
# Options for the standard registration.
|
1088
|
+
attr_accessor :standard
|
998
1089
|
# Type of registration to be created in `country`.
|
999
1090
|
attr_accessor :type
|
1000
1091
|
|
1001
|
-
def initialize(type: nil)
|
1092
|
+
def initialize(standard: nil, type: nil)
|
1093
|
+
@standard = standard
|
1002
1094
|
@type = type
|
1003
1095
|
end
|
1004
1096
|
end
|
1005
1097
|
|
1006
1098
|
class Aw < Stripe::RequestParams
|
1099
|
+
class Standard < Stripe::RequestParams
|
1100
|
+
# Place of supply scheme used in an standard registration.
|
1101
|
+
attr_accessor :place_of_supply_scheme
|
1102
|
+
|
1103
|
+
def initialize(place_of_supply_scheme: nil)
|
1104
|
+
@place_of_supply_scheme = place_of_supply_scheme
|
1105
|
+
end
|
1106
|
+
end
|
1107
|
+
# Options for the standard registration.
|
1108
|
+
attr_accessor :standard
|
1007
1109
|
# Type of registration to be created in `country`.
|
1008
1110
|
attr_accessor :type
|
1009
1111
|
|
1010
|
-
def initialize(type: nil)
|
1112
|
+
def initialize(standard: nil, type: nil)
|
1113
|
+
@standard = standard
|
1011
1114
|
@type = type
|
1012
1115
|
end
|
1013
1116
|
end
|
@@ -1022,28 +1125,61 @@ module Stripe
|
|
1022
1125
|
end
|
1023
1126
|
|
1024
1127
|
class Ba < Stripe::RequestParams
|
1128
|
+
class Standard < Stripe::RequestParams
|
1129
|
+
# Place of supply scheme used in an standard registration.
|
1130
|
+
attr_accessor :place_of_supply_scheme
|
1131
|
+
|
1132
|
+
def initialize(place_of_supply_scheme: nil)
|
1133
|
+
@place_of_supply_scheme = place_of_supply_scheme
|
1134
|
+
end
|
1135
|
+
end
|
1136
|
+
# Options for the standard registration.
|
1137
|
+
attr_accessor :standard
|
1025
1138
|
# Type of registration to be created in `country`.
|
1026
1139
|
attr_accessor :type
|
1027
1140
|
|
1028
|
-
def initialize(type: nil)
|
1141
|
+
def initialize(standard: nil, type: nil)
|
1142
|
+
@standard = standard
|
1029
1143
|
@type = type
|
1030
1144
|
end
|
1031
1145
|
end
|
1032
1146
|
|
1033
1147
|
class Bb < Stripe::RequestParams
|
1148
|
+
class Standard < Stripe::RequestParams
|
1149
|
+
# Place of supply scheme used in an standard registration.
|
1150
|
+
attr_accessor :place_of_supply_scheme
|
1151
|
+
|
1152
|
+
def initialize(place_of_supply_scheme: nil)
|
1153
|
+
@place_of_supply_scheme = place_of_supply_scheme
|
1154
|
+
end
|
1155
|
+
end
|
1156
|
+
# Options for the standard registration.
|
1157
|
+
attr_accessor :standard
|
1034
1158
|
# Type of registration to be created in `country`.
|
1035
1159
|
attr_accessor :type
|
1036
1160
|
|
1037
|
-
def initialize(type: nil)
|
1161
|
+
def initialize(standard: nil, type: nil)
|
1162
|
+
@standard = standard
|
1038
1163
|
@type = type
|
1039
1164
|
end
|
1040
1165
|
end
|
1041
1166
|
|
1042
1167
|
class Bd < Stripe::RequestParams
|
1168
|
+
class Standard < Stripe::RequestParams
|
1169
|
+
# Place of supply scheme used in an standard registration.
|
1170
|
+
attr_accessor :place_of_supply_scheme
|
1171
|
+
|
1172
|
+
def initialize(place_of_supply_scheme: nil)
|
1173
|
+
@place_of_supply_scheme = place_of_supply_scheme
|
1174
|
+
end
|
1175
|
+
end
|
1176
|
+
# Options for the standard registration.
|
1177
|
+
attr_accessor :standard
|
1043
1178
|
# Type of registration to be created in `country`.
|
1044
1179
|
attr_accessor :type
|
1045
1180
|
|
1046
|
-
def initialize(type: nil)
|
1181
|
+
def initialize(standard: nil, type: nil)
|
1182
|
+
@standard = standard
|
1047
1183
|
@type = type
|
1048
1184
|
end
|
1049
1185
|
end
|
@@ -1069,10 +1205,21 @@ module Stripe
|
|
1069
1205
|
end
|
1070
1206
|
|
1071
1207
|
class Bf < Stripe::RequestParams
|
1208
|
+
class Standard < Stripe::RequestParams
|
1209
|
+
# Place of supply scheme used in an standard registration.
|
1210
|
+
attr_accessor :place_of_supply_scheme
|
1211
|
+
|
1212
|
+
def initialize(place_of_supply_scheme: nil)
|
1213
|
+
@place_of_supply_scheme = place_of_supply_scheme
|
1214
|
+
end
|
1215
|
+
end
|
1216
|
+
# Options for the standard registration.
|
1217
|
+
attr_accessor :standard
|
1072
1218
|
# Type of registration to be created in `country`.
|
1073
1219
|
attr_accessor :type
|
1074
1220
|
|
1075
|
-
def initialize(type: nil)
|
1221
|
+
def initialize(standard: nil, type: nil)
|
1222
|
+
@standard = standard
|
1076
1223
|
@type = type
|
1077
1224
|
end
|
1078
1225
|
end
|
@@ -1098,10 +1245,21 @@ module Stripe
|
|
1098
1245
|
end
|
1099
1246
|
|
1100
1247
|
class Bh < Stripe::RequestParams
|
1248
|
+
class Standard < Stripe::RequestParams
|
1249
|
+
# Place of supply scheme used in an standard registration.
|
1250
|
+
attr_accessor :place_of_supply_scheme
|
1251
|
+
|
1252
|
+
def initialize(place_of_supply_scheme: nil)
|
1253
|
+
@place_of_supply_scheme = place_of_supply_scheme
|
1254
|
+
end
|
1255
|
+
end
|
1256
|
+
# Options for the standard registration.
|
1257
|
+
attr_accessor :standard
|
1101
1258
|
# Type of registration to be created in `country`.
|
1102
1259
|
attr_accessor :type
|
1103
1260
|
|
1104
|
-
def initialize(type: nil)
|
1261
|
+
def initialize(standard: nil, type: nil)
|
1262
|
+
@standard = standard
|
1105
1263
|
@type = type
|
1106
1264
|
end
|
1107
1265
|
end
|
@@ -1116,10 +1274,21 @@ module Stripe
|
|
1116
1274
|
end
|
1117
1275
|
|
1118
1276
|
class Bs < Stripe::RequestParams
|
1277
|
+
class Standard < Stripe::RequestParams
|
1278
|
+
# Place of supply scheme used in an standard registration.
|
1279
|
+
attr_accessor :place_of_supply_scheme
|
1280
|
+
|
1281
|
+
def initialize(place_of_supply_scheme: nil)
|
1282
|
+
@place_of_supply_scheme = place_of_supply_scheme
|
1283
|
+
end
|
1284
|
+
end
|
1285
|
+
# Options for the standard registration.
|
1286
|
+
attr_accessor :standard
|
1119
1287
|
# Type of registration to be created in `country`.
|
1120
1288
|
attr_accessor :type
|
1121
1289
|
|
1122
|
-
def initialize(type: nil)
|
1290
|
+
def initialize(standard: nil, type: nil)
|
1291
|
+
@standard = standard
|
1123
1292
|
@type = type
|
1124
1293
|
end
|
1125
1294
|
end
|
@@ -1154,19 +1323,41 @@ module Stripe
|
|
1154
1323
|
end
|
1155
1324
|
|
1156
1325
|
class Cd < Stripe::RequestParams
|
1326
|
+
class Standard < Stripe::RequestParams
|
1327
|
+
# Place of supply scheme used in an standard registration.
|
1328
|
+
attr_accessor :place_of_supply_scheme
|
1329
|
+
|
1330
|
+
def initialize(place_of_supply_scheme: nil)
|
1331
|
+
@place_of_supply_scheme = place_of_supply_scheme
|
1332
|
+
end
|
1333
|
+
end
|
1334
|
+
# Options for the standard registration.
|
1335
|
+
attr_accessor :standard
|
1157
1336
|
# Type of registration to be created in `country`.
|
1158
1337
|
attr_accessor :type
|
1159
1338
|
|
1160
|
-
def initialize(type: nil)
|
1339
|
+
def initialize(standard: nil, type: nil)
|
1340
|
+
@standard = standard
|
1161
1341
|
@type = type
|
1162
1342
|
end
|
1163
1343
|
end
|
1164
1344
|
|
1165
1345
|
class Ch < Stripe::RequestParams
|
1346
|
+
class Standard < Stripe::RequestParams
|
1347
|
+
# Place of supply scheme used in an standard registration.
|
1348
|
+
attr_accessor :place_of_supply_scheme
|
1349
|
+
|
1350
|
+
def initialize(place_of_supply_scheme: nil)
|
1351
|
+
@place_of_supply_scheme = place_of_supply_scheme
|
1352
|
+
end
|
1353
|
+
end
|
1354
|
+
# Options for the standard registration.
|
1355
|
+
attr_accessor :standard
|
1166
1356
|
# Type of registration to be created in `country`.
|
1167
1357
|
attr_accessor :type
|
1168
1358
|
|
1169
|
-
def initialize(type: nil)
|
1359
|
+
def initialize(standard: nil, type: nil)
|
1360
|
+
@standard = standard
|
1170
1361
|
@type = type
|
1171
1362
|
end
|
1172
1363
|
end
|
@@ -1355,10 +1546,21 @@ module Stripe
|
|
1355
1546
|
end
|
1356
1547
|
|
1357
1548
|
class Et < Stripe::RequestParams
|
1549
|
+
class Standard < Stripe::RequestParams
|
1550
|
+
# Place of supply scheme used in an standard registration.
|
1551
|
+
attr_accessor :place_of_supply_scheme
|
1552
|
+
|
1553
|
+
def initialize(place_of_supply_scheme: nil)
|
1554
|
+
@place_of_supply_scheme = place_of_supply_scheme
|
1555
|
+
end
|
1556
|
+
end
|
1557
|
+
# Options for the standard registration.
|
1558
|
+
attr_accessor :standard
|
1358
1559
|
# Type of registration to be created in `country`.
|
1359
1560
|
attr_accessor :type
|
1360
1561
|
|
1361
|
-
def initialize(type: nil)
|
1562
|
+
def initialize(standard: nil, type: nil)
|
1563
|
+
@standard = standard
|
1362
1564
|
@type = type
|
1363
1565
|
end
|
1364
1566
|
end
|
@@ -1404,10 +1606,21 @@ module Stripe
|
|
1404
1606
|
end
|
1405
1607
|
|
1406
1608
|
class Gb < Stripe::RequestParams
|
1609
|
+
class Standard < Stripe::RequestParams
|
1610
|
+
# Place of supply scheme used in an standard registration.
|
1611
|
+
attr_accessor :place_of_supply_scheme
|
1612
|
+
|
1613
|
+
def initialize(place_of_supply_scheme: nil)
|
1614
|
+
@place_of_supply_scheme = place_of_supply_scheme
|
1615
|
+
end
|
1616
|
+
end
|
1617
|
+
# Options for the standard registration.
|
1618
|
+
attr_accessor :standard
|
1407
1619
|
# Type of registration to be created in `country`.
|
1408
1620
|
attr_accessor :type
|
1409
1621
|
|
1410
|
-
def initialize(type: nil)
|
1622
|
+
def initialize(standard: nil, type: nil)
|
1623
|
+
@standard = standard
|
1411
1624
|
@type = type
|
1412
1625
|
end
|
1413
1626
|
end
|
@@ -1422,10 +1635,21 @@ module Stripe
|
|
1422
1635
|
end
|
1423
1636
|
|
1424
1637
|
class Gn < Stripe::RequestParams
|
1638
|
+
class Standard < Stripe::RequestParams
|
1639
|
+
# Place of supply scheme used in an standard registration.
|
1640
|
+
attr_accessor :place_of_supply_scheme
|
1641
|
+
|
1642
|
+
def initialize(place_of_supply_scheme: nil)
|
1643
|
+
@place_of_supply_scheme = place_of_supply_scheme
|
1644
|
+
end
|
1645
|
+
end
|
1646
|
+
# Options for the standard registration.
|
1647
|
+
attr_accessor :standard
|
1425
1648
|
# Type of registration to be created in `country`.
|
1426
1649
|
attr_accessor :type
|
1427
1650
|
|
1428
|
-
def initialize(type: nil)
|
1651
|
+
def initialize(standard: nil, type: nil)
|
1652
|
+
@standard = standard
|
1429
1653
|
@type = type
|
1430
1654
|
end
|
1431
1655
|
end
|
@@ -1529,10 +1753,21 @@ module Stripe
|
|
1529
1753
|
end
|
1530
1754
|
|
1531
1755
|
class Is < Stripe::RequestParams
|
1756
|
+
class Standard < Stripe::RequestParams
|
1757
|
+
# Place of supply scheme used in an standard registration.
|
1758
|
+
attr_accessor :place_of_supply_scheme
|
1759
|
+
|
1760
|
+
def initialize(place_of_supply_scheme: nil)
|
1761
|
+
@place_of_supply_scheme = place_of_supply_scheme
|
1762
|
+
end
|
1763
|
+
end
|
1764
|
+
# Options for the standard registration.
|
1765
|
+
attr_accessor :standard
|
1532
1766
|
# Type of registration to be created in `country`.
|
1533
1767
|
attr_accessor :type
|
1534
1768
|
|
1535
|
-
def initialize(type: nil)
|
1769
|
+
def initialize(standard: nil, type: nil)
|
1770
|
+
@standard = standard
|
1536
1771
|
@type = type
|
1537
1772
|
end
|
1538
1773
|
end
|
@@ -1558,10 +1793,21 @@ module Stripe
|
|
1558
1793
|
end
|
1559
1794
|
|
1560
1795
|
class Jp < Stripe::RequestParams
|
1796
|
+
class Standard < Stripe::RequestParams
|
1797
|
+
# Place of supply scheme used in an standard registration.
|
1798
|
+
attr_accessor :place_of_supply_scheme
|
1799
|
+
|
1800
|
+
def initialize(place_of_supply_scheme: nil)
|
1801
|
+
@place_of_supply_scheme = place_of_supply_scheme
|
1802
|
+
end
|
1803
|
+
end
|
1804
|
+
# Options for the standard registration.
|
1805
|
+
attr_accessor :standard
|
1561
1806
|
# Type of registration to be created in `country`.
|
1562
1807
|
attr_accessor :type
|
1563
1808
|
|
1564
|
-
def initialize(type: nil)
|
1809
|
+
def initialize(standard: nil, type: nil)
|
1810
|
+
@standard = standard
|
1565
1811
|
@type = type
|
1566
1812
|
end
|
1567
1813
|
end
|
@@ -1699,28 +1945,61 @@ module Stripe
|
|
1699
1945
|
end
|
1700
1946
|
|
1701
1947
|
class Me < Stripe::RequestParams
|
1948
|
+
class Standard < Stripe::RequestParams
|
1949
|
+
# Place of supply scheme used in an standard registration.
|
1950
|
+
attr_accessor :place_of_supply_scheme
|
1951
|
+
|
1952
|
+
def initialize(place_of_supply_scheme: nil)
|
1953
|
+
@place_of_supply_scheme = place_of_supply_scheme
|
1954
|
+
end
|
1955
|
+
end
|
1956
|
+
# Options for the standard registration.
|
1957
|
+
attr_accessor :standard
|
1702
1958
|
# Type of registration to be created in `country`.
|
1703
1959
|
attr_accessor :type
|
1704
1960
|
|
1705
|
-
def initialize(type: nil)
|
1961
|
+
def initialize(standard: nil, type: nil)
|
1962
|
+
@standard = standard
|
1706
1963
|
@type = type
|
1707
1964
|
end
|
1708
1965
|
end
|
1709
1966
|
|
1710
1967
|
class Mk < Stripe::RequestParams
|
1968
|
+
class Standard < Stripe::RequestParams
|
1969
|
+
# Place of supply scheme used in an standard registration.
|
1970
|
+
attr_accessor :place_of_supply_scheme
|
1971
|
+
|
1972
|
+
def initialize(place_of_supply_scheme: nil)
|
1973
|
+
@place_of_supply_scheme = place_of_supply_scheme
|
1974
|
+
end
|
1975
|
+
end
|
1976
|
+
# Options for the standard registration.
|
1977
|
+
attr_accessor :standard
|
1711
1978
|
# Type of registration to be created in `country`.
|
1712
1979
|
attr_accessor :type
|
1713
1980
|
|
1714
|
-
def initialize(type: nil)
|
1981
|
+
def initialize(standard: nil, type: nil)
|
1982
|
+
@standard = standard
|
1715
1983
|
@type = type
|
1716
1984
|
end
|
1717
1985
|
end
|
1718
1986
|
|
1719
1987
|
class Mr < Stripe::RequestParams
|
1988
|
+
class Standard < Stripe::RequestParams
|
1989
|
+
# Place of supply scheme used in an standard registration.
|
1990
|
+
attr_accessor :place_of_supply_scheme
|
1991
|
+
|
1992
|
+
def initialize(place_of_supply_scheme: nil)
|
1993
|
+
@place_of_supply_scheme = place_of_supply_scheme
|
1994
|
+
end
|
1995
|
+
end
|
1996
|
+
# Options for the standard registration.
|
1997
|
+
attr_accessor :standard
|
1720
1998
|
# Type of registration to be created in `country`.
|
1721
1999
|
attr_accessor :type
|
1722
2000
|
|
1723
|
-
def initialize(type: nil)
|
2001
|
+
def initialize(standard: nil, type: nil)
|
2002
|
+
@standard = standard
|
1724
2003
|
@type = type
|
1725
2004
|
end
|
1726
2005
|
end
|
@@ -1793,10 +2072,21 @@ module Stripe
|
|
1793
2072
|
end
|
1794
2073
|
|
1795
2074
|
class No < Stripe::RequestParams
|
2075
|
+
class Standard < Stripe::RequestParams
|
2076
|
+
# Place of supply scheme used in an standard registration.
|
2077
|
+
attr_accessor :place_of_supply_scheme
|
2078
|
+
|
2079
|
+
def initialize(place_of_supply_scheme: nil)
|
2080
|
+
@place_of_supply_scheme = place_of_supply_scheme
|
2081
|
+
end
|
2082
|
+
end
|
2083
|
+
# Options for the standard registration.
|
2084
|
+
attr_accessor :standard
|
1796
2085
|
# Type of registration to be created in `country`.
|
1797
2086
|
attr_accessor :type
|
1798
2087
|
|
1799
|
-
def initialize(type: nil)
|
2088
|
+
def initialize(standard: nil, type: nil)
|
2089
|
+
@standard = standard
|
1800
2090
|
@type = type
|
1801
2091
|
end
|
1802
2092
|
end
|
@@ -1811,19 +2101,41 @@ module Stripe
|
|
1811
2101
|
end
|
1812
2102
|
|
1813
2103
|
class Nz < Stripe::RequestParams
|
2104
|
+
class Standard < Stripe::RequestParams
|
2105
|
+
# Place of supply scheme used in an standard registration.
|
2106
|
+
attr_accessor :place_of_supply_scheme
|
2107
|
+
|
2108
|
+
def initialize(place_of_supply_scheme: nil)
|
2109
|
+
@place_of_supply_scheme = place_of_supply_scheme
|
2110
|
+
end
|
2111
|
+
end
|
2112
|
+
# Options for the standard registration.
|
2113
|
+
attr_accessor :standard
|
1814
2114
|
# Type of registration to be created in `country`.
|
1815
2115
|
attr_accessor :type
|
1816
2116
|
|
1817
|
-
def initialize(type: nil)
|
2117
|
+
def initialize(standard: nil, type: nil)
|
2118
|
+
@standard = standard
|
1818
2119
|
@type = type
|
1819
2120
|
end
|
1820
2121
|
end
|
1821
2122
|
|
1822
2123
|
class Om < Stripe::RequestParams
|
2124
|
+
class Standard < Stripe::RequestParams
|
2125
|
+
# Place of supply scheme used in an standard registration.
|
2126
|
+
attr_accessor :place_of_supply_scheme
|
2127
|
+
|
2128
|
+
def initialize(place_of_supply_scheme: nil)
|
2129
|
+
@place_of_supply_scheme = place_of_supply_scheme
|
2130
|
+
end
|
2131
|
+
end
|
2132
|
+
# Options for the standard registration.
|
2133
|
+
attr_accessor :standard
|
1823
2134
|
# Type of registration to be created in `country`.
|
1824
2135
|
attr_accessor :type
|
1825
2136
|
|
1826
|
-
def initialize(type: nil)
|
2137
|
+
def initialize(standard: nil, type: nil)
|
2138
|
+
@standard = standard
|
1827
2139
|
@type = type
|
1828
2140
|
end
|
1829
2141
|
end
|
@@ -1907,10 +2219,21 @@ module Stripe
|
|
1907
2219
|
end
|
1908
2220
|
|
1909
2221
|
class Rs < Stripe::RequestParams
|
2222
|
+
class Standard < Stripe::RequestParams
|
2223
|
+
# Place of supply scheme used in an standard registration.
|
2224
|
+
attr_accessor :place_of_supply_scheme
|
2225
|
+
|
2226
|
+
def initialize(place_of_supply_scheme: nil)
|
2227
|
+
@place_of_supply_scheme = place_of_supply_scheme
|
2228
|
+
end
|
2229
|
+
end
|
2230
|
+
# Options for the standard registration.
|
2231
|
+
attr_accessor :standard
|
1910
2232
|
# Type of registration to be created in `country`.
|
1911
2233
|
attr_accessor :type
|
1912
2234
|
|
1913
|
-
def initialize(type: nil)
|
2235
|
+
def initialize(standard: nil, type: nil)
|
2236
|
+
@standard = standard
|
1914
2237
|
@type = type
|
1915
2238
|
end
|
1916
2239
|
end
|
@@ -1954,10 +2277,21 @@ module Stripe
|
|
1954
2277
|
end
|
1955
2278
|
|
1956
2279
|
class Sg < Stripe::RequestParams
|
2280
|
+
class Standard < Stripe::RequestParams
|
2281
|
+
# Place of supply scheme used in an standard registration.
|
2282
|
+
attr_accessor :place_of_supply_scheme
|
2283
|
+
|
2284
|
+
def initialize(place_of_supply_scheme: nil)
|
2285
|
+
@place_of_supply_scheme = place_of_supply_scheme
|
2286
|
+
end
|
2287
|
+
end
|
2288
|
+
# Options for the standard registration.
|
2289
|
+
attr_accessor :standard
|
1957
2290
|
# Type of registration to be created in `country`.
|
1958
2291
|
attr_accessor :type
|
1959
2292
|
|
1960
|
-
def initialize(type: nil)
|
2293
|
+
def initialize(standard: nil, type: nil)
|
2294
|
+
@standard = standard
|
1961
2295
|
@type = type
|
1962
2296
|
end
|
1963
2297
|
end
|
@@ -2012,10 +2346,21 @@ module Stripe
|
|
2012
2346
|
end
|
2013
2347
|
|
2014
2348
|
class Sr < Stripe::RequestParams
|
2349
|
+
class Standard < Stripe::RequestParams
|
2350
|
+
# Place of supply scheme used in an standard registration.
|
2351
|
+
attr_accessor :place_of_supply_scheme
|
2352
|
+
|
2353
|
+
def initialize(place_of_supply_scheme: nil)
|
2354
|
+
@place_of_supply_scheme = place_of_supply_scheme
|
2355
|
+
end
|
2356
|
+
end
|
2357
|
+
# Options for the standard registration.
|
2358
|
+
attr_accessor :standard
|
2015
2359
|
# Type of registration to be created in `country`.
|
2016
2360
|
attr_accessor :type
|
2017
2361
|
|
2018
|
-
def initialize(type: nil)
|
2362
|
+
def initialize(standard: nil, type: nil)
|
2363
|
+
@standard = standard
|
2019
2364
|
@type = type
|
2020
2365
|
end
|
2021
2366
|
end
|
@@ -2139,10 +2484,21 @@ module Stripe
|
|
2139
2484
|
end
|
2140
2485
|
|
2141
2486
|
class Uy < Stripe::RequestParams
|
2487
|
+
class Standard < Stripe::RequestParams
|
2488
|
+
# Place of supply scheme used in an standard registration.
|
2489
|
+
attr_accessor :place_of_supply_scheme
|
2490
|
+
|
2491
|
+
def initialize(place_of_supply_scheme: nil)
|
2492
|
+
@place_of_supply_scheme = place_of_supply_scheme
|
2493
|
+
end
|
2494
|
+
end
|
2495
|
+
# Options for the standard registration.
|
2496
|
+
attr_accessor :standard
|
2142
2497
|
# Type of registration to be created in `country`.
|
2143
2498
|
attr_accessor :type
|
2144
2499
|
|
2145
|
-
def initialize(type: nil)
|
2500
|
+
def initialize(standard: nil, type: nil)
|
2501
|
+
@standard = standard
|
2146
2502
|
@type = type
|
2147
2503
|
end
|
2148
2504
|
end
|
@@ -2166,10 +2522,21 @@ module Stripe
|
|
2166
2522
|
end
|
2167
2523
|
|
2168
2524
|
class Za < Stripe::RequestParams
|
2525
|
+
class Standard < Stripe::RequestParams
|
2526
|
+
# Place of supply scheme used in an standard registration.
|
2527
|
+
attr_accessor :place_of_supply_scheme
|
2528
|
+
|
2529
|
+
def initialize(place_of_supply_scheme: nil)
|
2530
|
+
@place_of_supply_scheme = place_of_supply_scheme
|
2531
|
+
end
|
2532
|
+
end
|
2533
|
+
# Options for the standard registration.
|
2534
|
+
attr_accessor :standard
|
2169
2535
|
# Type of registration to be created in `country`.
|
2170
2536
|
attr_accessor :type
|
2171
2537
|
|
2172
|
-
def initialize(type: nil)
|
2538
|
+
def initialize(standard: nil, type: nil)
|
2539
|
+
@standard = standard
|
2173
2540
|
@type = type
|
2174
2541
|
end
|
2175
2542
|
end
|
@@ -2184,10 +2551,21 @@ module Stripe
|
|
2184
2551
|
end
|
2185
2552
|
|
2186
2553
|
class Zw < Stripe::RequestParams
|
2554
|
+
class Standard < Stripe::RequestParams
|
2555
|
+
# Place of supply scheme used in an standard registration.
|
2556
|
+
attr_accessor :place_of_supply_scheme
|
2557
|
+
|
2558
|
+
def initialize(place_of_supply_scheme: nil)
|
2559
|
+
@place_of_supply_scheme = place_of_supply_scheme
|
2560
|
+
end
|
2561
|
+
end
|
2562
|
+
# Options for the standard registration.
|
2563
|
+
attr_accessor :standard
|
2187
2564
|
# Type of registration to be created in `country`.
|
2188
2565
|
attr_accessor :type
|
2189
2566
|
|
2190
|
-
def initialize(type: nil)
|
2567
|
+
def initialize(standard: nil, type: nil)
|
2568
|
+
@standard = standard
|
2191
2569
|
@type = type
|
2192
2570
|
end
|
2193
2571
|
end
|