increase 1.126.0 → 1.128.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 (38) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +16 -0
  3. data/README.md +1 -1
  4. data/lib/increase/models/card_dispute.rb +311 -66
  5. data/lib/increase/models/card_dispute_create_params.rb +102 -30
  6. data/lib/increase/models/card_dispute_submit_user_submission_params.rb +104 -30
  7. data/lib/increase/models/card_payment.rb +60 -15
  8. data/lib/increase/models/declined_transaction.rb +21 -6
  9. data/lib/increase/models/export_create_params.rb +8 -3
  10. data/lib/increase/models/pending_transaction.rb +32 -33
  11. data/lib/increase/models/real_time_decision.rb +24 -6
  12. data/lib/increase/models/simulations/card_dispute_action_params.rb +97 -27
  13. data/lib/increase/models/transaction.rb +23 -6
  14. data/lib/increase/resources/exports.rb +1 -1
  15. data/lib/increase/version.rb +1 -1
  16. data/rbi/increase/models/card_dispute.rbi +1038 -88
  17. data/rbi/increase/models/card_dispute_create_params.rbi +364 -40
  18. data/rbi/increase/models/card_dispute_submit_user_submission_params.rbi +364 -40
  19. data/rbi/increase/models/card_payment.rbi +211 -20
  20. data/rbi/increase/models/declined_transaction.rbi +78 -8
  21. data/rbi/increase/models/export_create_params.rbi +25 -4
  22. data/rbi/increase/models/pending_transaction.rbi +90 -53
  23. data/rbi/increase/models/real_time_decision.rbi +90 -8
  24. data/rbi/increase/models/simulations/card_dispute_action_params.rbi +333 -36
  25. data/rbi/increase/models/transaction.rbi +76 -8
  26. data/rbi/increase/resources/exports.rbi +1 -1
  27. data/sig/increase/models/card_dispute.rbs +264 -88
  28. data/sig/increase/models/card_dispute_create_params.rbs +150 -50
  29. data/sig/increase/models/card_dispute_submit_user_submission_params.rbs +150 -50
  30. data/sig/increase/models/card_payment.rbs +60 -20
  31. data/sig/increase/models/declined_transaction.rbs +24 -8
  32. data/sig/increase/models/export_create_params.rbs +15 -5
  33. data/sig/increase/models/pending_transaction.rbs +29 -27
  34. data/sig/increase/models/real_time_decision.rbs +24 -8
  35. data/sig/increase/models/simulations/card_dispute_action_params.rbs +135 -45
  36. data/sig/increase/models/transaction.rbs +24 -8
  37. data/sig/increase/resources/exports.rbs +1 -1
  38. metadata +1 -1
@@ -315,8 +315,15 @@ module Increase
315
315
 
316
316
  # If the category of this Transaction source is equal to `other`, this field will
317
317
  # contain an empty object, otherwise it will contain null.
318
- sig { returns(T.nilable(T.anything)) }
319
- attr_accessor :other
318
+ sig { returns(T.nilable(Increase::CardPayment::Element::Other)) }
319
+ attr_reader :other
320
+
321
+ sig do
322
+ params(
323
+ other: T.nilable(Increase::CardPayment::Element::Other::OrHash)
324
+ ).void
325
+ end
326
+ attr_writer :other
320
327
 
321
328
  sig do
322
329
  params(
@@ -352,7 +359,7 @@ module Increase
352
359
  T.nilable(Increase::CardPayment::Element::CardValidation::OrHash),
353
360
  category: Increase::CardPayment::Element::Category::OrSymbol,
354
361
  created_at: Time,
355
- other: T.nilable(T.anything)
362
+ other: T.nilable(Increase::CardPayment::Element::Other::OrHash)
356
363
  ).returns(T.attached_class)
357
364
  end
358
365
  def self.new(
@@ -448,7 +455,7 @@ module Increase
448
455
  T.nilable(Increase::CardPayment::Element::CardValidation),
449
456
  category: Increase::CardPayment::Element::Category::TaggedSymbol,
450
457
  created_at: Time,
451
- other: T.nilable(T.anything)
458
+ other: T.nilable(Increase::CardPayment::Element::Other)
452
459
  }
453
460
  )
454
461
  end
@@ -2492,8 +2499,24 @@ module Increase
2492
2499
  attr_accessor :category
2493
2500
 
2494
2501
  # Fields specific to the `pulse` network.
2495
- sig { returns(T.nilable(T.anything)) }
2496
- attr_accessor :pulse
2502
+ sig do
2503
+ returns(
2504
+ T.nilable(
2505
+ Increase::CardPayment::Element::CardAuthorization::NetworkDetails::Pulse
2506
+ )
2507
+ )
2508
+ end
2509
+ attr_reader :pulse
2510
+
2511
+ sig do
2512
+ params(
2513
+ pulse:
2514
+ T.nilable(
2515
+ Increase::CardPayment::Element::CardAuthorization::NetworkDetails::Pulse::OrHash
2516
+ )
2517
+ ).void
2518
+ end
2519
+ attr_writer :pulse
2497
2520
 
2498
2521
  # Fields specific to the `visa` network.
2499
2522
  sig do
@@ -2520,7 +2543,10 @@ module Increase
2520
2543
  params(
2521
2544
  category:
2522
2545
  Increase::CardPayment::Element::CardAuthorization::NetworkDetails::Category::OrSymbol,
2523
- pulse: T.nilable(T.anything),
2546
+ pulse:
2547
+ T.nilable(
2548
+ Increase::CardPayment::Element::CardAuthorization::NetworkDetails::Pulse::OrHash
2549
+ ),
2524
2550
  visa:
2525
2551
  T.nilable(
2526
2552
  Increase::CardPayment::Element::CardAuthorization::NetworkDetails::Visa::OrHash
@@ -2542,7 +2568,10 @@ module Increase
2542
2568
  {
2543
2569
  category:
2544
2570
  Increase::CardPayment::Element::CardAuthorization::NetworkDetails::Category::TaggedSymbol,
2545
- pulse: T.nilable(T.anything),
2571
+ pulse:
2572
+ T.nilable(
2573
+ Increase::CardPayment::Element::CardAuthorization::NetworkDetails::Pulse
2574
+ ),
2546
2575
  visa:
2547
2576
  T.nilable(
2548
2577
  Increase::CardPayment::Element::CardAuthorization::NetworkDetails::Visa
@@ -2591,6 +2620,25 @@ module Increase
2591
2620
  end
2592
2621
  end
2593
2622
 
2623
+ class Pulse < Increase::Internal::Type::BaseModel
2624
+ OrHash =
2625
+ T.type_alias do
2626
+ T.any(
2627
+ Increase::CardPayment::Element::CardAuthorization::NetworkDetails::Pulse,
2628
+ Increase::Internal::AnyHash
2629
+ )
2630
+ end
2631
+
2632
+ # Fields specific to the `pulse` network.
2633
+ sig { returns(T.attached_class) }
2634
+ def self.new
2635
+ end
2636
+
2637
+ sig { override.returns({}) }
2638
+ def to_hash
2639
+ end
2640
+ end
2641
+
2594
2642
  class Visa < Increase::Internal::Type::BaseModel
2595
2643
  OrHash =
2596
2644
  T.type_alias do
@@ -4987,8 +5035,24 @@ module Increase
4987
5035
  attr_accessor :category
4988
5036
 
4989
5037
  # Fields specific to the `pulse` network.
4990
- sig { returns(T.nilable(T.anything)) }
4991
- attr_accessor :pulse
5038
+ sig do
5039
+ returns(
5040
+ T.nilable(
5041
+ Increase::CardPayment::Element::CardDecline::NetworkDetails::Pulse
5042
+ )
5043
+ )
5044
+ end
5045
+ attr_reader :pulse
5046
+
5047
+ sig do
5048
+ params(
5049
+ pulse:
5050
+ T.nilable(
5051
+ Increase::CardPayment::Element::CardDecline::NetworkDetails::Pulse::OrHash
5052
+ )
5053
+ ).void
5054
+ end
5055
+ attr_writer :pulse
4992
5056
 
4993
5057
  # Fields specific to the `visa` network.
4994
5058
  sig do
@@ -5015,7 +5079,10 @@ module Increase
5015
5079
  params(
5016
5080
  category:
5017
5081
  Increase::CardPayment::Element::CardDecline::NetworkDetails::Category::OrSymbol,
5018
- pulse: T.nilable(T.anything),
5082
+ pulse:
5083
+ T.nilable(
5084
+ Increase::CardPayment::Element::CardDecline::NetworkDetails::Pulse::OrHash
5085
+ ),
5019
5086
  visa:
5020
5087
  T.nilable(
5021
5088
  Increase::CardPayment::Element::CardDecline::NetworkDetails::Visa::OrHash
@@ -5037,7 +5104,10 @@ module Increase
5037
5104
  {
5038
5105
  category:
5039
5106
  Increase::CardPayment::Element::CardDecline::NetworkDetails::Category::TaggedSymbol,
5040
- pulse: T.nilable(T.anything),
5107
+ pulse:
5108
+ T.nilable(
5109
+ Increase::CardPayment::Element::CardDecline::NetworkDetails::Pulse
5110
+ ),
5041
5111
  visa:
5042
5112
  T.nilable(
5043
5113
  Increase::CardPayment::Element::CardDecline::NetworkDetails::Visa
@@ -5086,6 +5156,25 @@ module Increase
5086
5156
  end
5087
5157
  end
5088
5158
 
5159
+ class Pulse < Increase::Internal::Type::BaseModel
5160
+ OrHash =
5161
+ T.type_alias do
5162
+ T.any(
5163
+ Increase::CardPayment::Element::CardDecline::NetworkDetails::Pulse,
5164
+ Increase::Internal::AnyHash
5165
+ )
5166
+ end
5167
+
5168
+ # Fields specific to the `pulse` network.
5169
+ sig { returns(T.attached_class) }
5170
+ def self.new
5171
+ end
5172
+
5173
+ sig { override.returns({}) }
5174
+ def to_hash
5175
+ end
5176
+ end
5177
+
5089
5178
  class Visa < Increase::Internal::Type::BaseModel
5090
5179
  OrHash =
5091
5180
  T.type_alias do
@@ -7416,8 +7505,24 @@ module Increase
7416
7505
  attr_accessor :category
7417
7506
 
7418
7507
  # Fields specific to the `pulse` network.
7419
- sig { returns(T.nilable(T.anything)) }
7420
- attr_accessor :pulse
7508
+ sig do
7509
+ returns(
7510
+ T.nilable(
7511
+ Increase::CardPayment::Element::CardFinancial::NetworkDetails::Pulse
7512
+ )
7513
+ )
7514
+ end
7515
+ attr_reader :pulse
7516
+
7517
+ sig do
7518
+ params(
7519
+ pulse:
7520
+ T.nilable(
7521
+ Increase::CardPayment::Element::CardFinancial::NetworkDetails::Pulse::OrHash
7522
+ )
7523
+ ).void
7524
+ end
7525
+ attr_writer :pulse
7421
7526
 
7422
7527
  # Fields specific to the `visa` network.
7423
7528
  sig do
@@ -7444,7 +7549,10 @@ module Increase
7444
7549
  params(
7445
7550
  category:
7446
7551
  Increase::CardPayment::Element::CardFinancial::NetworkDetails::Category::OrSymbol,
7447
- pulse: T.nilable(T.anything),
7552
+ pulse:
7553
+ T.nilable(
7554
+ Increase::CardPayment::Element::CardFinancial::NetworkDetails::Pulse::OrHash
7555
+ ),
7448
7556
  visa:
7449
7557
  T.nilable(
7450
7558
  Increase::CardPayment::Element::CardFinancial::NetworkDetails::Visa::OrHash
@@ -7466,7 +7574,10 @@ module Increase
7466
7574
  {
7467
7575
  category:
7468
7576
  Increase::CardPayment::Element::CardFinancial::NetworkDetails::Category::TaggedSymbol,
7469
- pulse: T.nilable(T.anything),
7577
+ pulse:
7578
+ T.nilable(
7579
+ Increase::CardPayment::Element::CardFinancial::NetworkDetails::Pulse
7580
+ ),
7470
7581
  visa:
7471
7582
  T.nilable(
7472
7583
  Increase::CardPayment::Element::CardFinancial::NetworkDetails::Visa
@@ -7515,6 +7626,25 @@ module Increase
7515
7626
  end
7516
7627
  end
7517
7628
 
7629
+ class Pulse < Increase::Internal::Type::BaseModel
7630
+ OrHash =
7631
+ T.type_alias do
7632
+ T.any(
7633
+ Increase::CardPayment::Element::CardFinancial::NetworkDetails::Pulse,
7634
+ Increase::Internal::AnyHash
7635
+ )
7636
+ end
7637
+
7638
+ # Fields specific to the `pulse` network.
7639
+ sig { returns(T.attached_class) }
7640
+ def self.new
7641
+ end
7642
+
7643
+ sig { override.returns({}) }
7644
+ def to_hash
7645
+ end
7646
+ end
7647
+
7518
7648
  class Visa < Increase::Internal::Type::BaseModel
7519
7649
  OrHash =
7520
7650
  T.type_alias do
@@ -16650,8 +16780,24 @@ module Increase
16650
16780
  attr_accessor :category
16651
16781
 
16652
16782
  # Fields specific to the `pulse` network.
16653
- sig { returns(T.nilable(T.anything)) }
16654
- attr_accessor :pulse
16783
+ sig do
16784
+ returns(
16785
+ T.nilable(
16786
+ Increase::CardPayment::Element::CardValidation::NetworkDetails::Pulse
16787
+ )
16788
+ )
16789
+ end
16790
+ attr_reader :pulse
16791
+
16792
+ sig do
16793
+ params(
16794
+ pulse:
16795
+ T.nilable(
16796
+ Increase::CardPayment::Element::CardValidation::NetworkDetails::Pulse::OrHash
16797
+ )
16798
+ ).void
16799
+ end
16800
+ attr_writer :pulse
16655
16801
 
16656
16802
  # Fields specific to the `visa` network.
16657
16803
  sig do
@@ -16678,7 +16824,10 @@ module Increase
16678
16824
  params(
16679
16825
  category:
16680
16826
  Increase::CardPayment::Element::CardValidation::NetworkDetails::Category::OrSymbol,
16681
- pulse: T.nilable(T.anything),
16827
+ pulse:
16828
+ T.nilable(
16829
+ Increase::CardPayment::Element::CardValidation::NetworkDetails::Pulse::OrHash
16830
+ ),
16682
16831
  visa:
16683
16832
  T.nilable(
16684
16833
  Increase::CardPayment::Element::CardValidation::NetworkDetails::Visa::OrHash
@@ -16700,7 +16849,10 @@ module Increase
16700
16849
  {
16701
16850
  category:
16702
16851
  Increase::CardPayment::Element::CardValidation::NetworkDetails::Category::TaggedSymbol,
16703
- pulse: T.nilable(T.anything),
16852
+ pulse:
16853
+ T.nilable(
16854
+ Increase::CardPayment::Element::CardValidation::NetworkDetails::Pulse
16855
+ ),
16704
16856
  visa:
16705
16857
  T.nilable(
16706
16858
  Increase::CardPayment::Element::CardValidation::NetworkDetails::Visa
@@ -16749,6 +16901,25 @@ module Increase
16749
16901
  end
16750
16902
  end
16751
16903
 
16904
+ class Pulse < Increase::Internal::Type::BaseModel
16905
+ OrHash =
16906
+ T.type_alias do
16907
+ T.any(
16908
+ Increase::CardPayment::Element::CardValidation::NetworkDetails::Pulse,
16909
+ Increase::Internal::AnyHash
16910
+ )
16911
+ end
16912
+
16913
+ # Fields specific to the `pulse` network.
16914
+ sig { returns(T.attached_class) }
16915
+ def self.new
16916
+ end
16917
+
16918
+ sig { override.returns({}) }
16919
+ def to_hash
16920
+ end
16921
+ end
16922
+
16752
16923
  class Visa < Increase::Internal::Type::BaseModel
16753
16924
  OrHash =
16754
16925
  T.type_alias do
@@ -17609,6 +17780,26 @@ module Increase
17609
17780
  def self.values
17610
17781
  end
17611
17782
  end
17783
+
17784
+ class Other < Increase::Internal::Type::BaseModel
17785
+ OrHash =
17786
+ T.type_alias do
17787
+ T.any(
17788
+ Increase::CardPayment::Element::Other,
17789
+ Increase::Internal::AnyHash
17790
+ )
17791
+ end
17792
+
17793
+ # If the category of this Transaction source is equal to `other`, this field will
17794
+ # contain an empty object, otherwise it will contain null.
17795
+ sig { returns(T.attached_class) }
17796
+ def self.new
17797
+ end
17798
+
17799
+ sig { override.returns({}) }
17800
+ def to_hash
17801
+ end
17802
+ end
17612
17803
  end
17613
17804
 
17614
17805
  class State < Increase::Internal::Type::BaseModel
@@ -349,8 +349,16 @@ module Increase
349
349
 
350
350
  # If the category of this Transaction source is equal to `other`, this field will
351
351
  # contain an empty object, otherwise it will contain null.
352
- sig { returns(T.nilable(T.anything)) }
353
- attr_accessor :other
352
+ sig { returns(T.nilable(Increase::DeclinedTransaction::Source::Other)) }
353
+ attr_reader :other
354
+
355
+ sig do
356
+ params(
357
+ other:
358
+ T.nilable(Increase::DeclinedTransaction::Source::Other::OrHash)
359
+ ).void
360
+ end
361
+ attr_writer :other
354
362
 
355
363
  # A Wire Decline object. This field will be present in the JSON response if and
356
364
  # only if `category` is equal to `wire_decline`.
@@ -401,7 +409,8 @@ module Increase
401
409
  T.nilable(
402
410
  Increase::DeclinedTransaction::Source::InboundRealTimePaymentsTransferDecline::OrHash
403
411
  ),
404
- other: T.nilable(T.anything),
412
+ other:
413
+ T.nilable(Increase::DeclinedTransaction::Source::Other::OrHash),
405
414
  wire_decline:
406
415
  T.nilable(
407
416
  Increase::DeclinedTransaction::Source::WireDecline::OrHash
@@ -464,7 +473,7 @@ module Increase
464
473
  T.nilable(
465
474
  Increase::DeclinedTransaction::Source::InboundRealTimePaymentsTransferDecline
466
475
  ),
467
- other: T.nilable(T.anything),
476
+ other: T.nilable(Increase::DeclinedTransaction::Source::Other),
468
477
  wire_decline:
469
478
  T.nilable(Increase::DeclinedTransaction::Source::WireDecline)
470
479
  }
@@ -2102,8 +2111,24 @@ module Increase
2102
2111
  attr_accessor :category
2103
2112
 
2104
2113
  # Fields specific to the `pulse` network.
2105
- sig { returns(T.nilable(T.anything)) }
2106
- attr_accessor :pulse
2114
+ sig do
2115
+ returns(
2116
+ T.nilable(
2117
+ Increase::DeclinedTransaction::Source::CardDecline::NetworkDetails::Pulse
2118
+ )
2119
+ )
2120
+ end
2121
+ attr_reader :pulse
2122
+
2123
+ sig do
2124
+ params(
2125
+ pulse:
2126
+ T.nilable(
2127
+ Increase::DeclinedTransaction::Source::CardDecline::NetworkDetails::Pulse::OrHash
2128
+ )
2129
+ ).void
2130
+ end
2131
+ attr_writer :pulse
2107
2132
 
2108
2133
  # Fields specific to the `visa` network.
2109
2134
  sig do
@@ -2130,7 +2155,10 @@ module Increase
2130
2155
  params(
2131
2156
  category:
2132
2157
  Increase::DeclinedTransaction::Source::CardDecline::NetworkDetails::Category::OrSymbol,
2133
- pulse: T.nilable(T.anything),
2158
+ pulse:
2159
+ T.nilable(
2160
+ Increase::DeclinedTransaction::Source::CardDecline::NetworkDetails::Pulse::OrHash
2161
+ ),
2134
2162
  visa:
2135
2163
  T.nilable(
2136
2164
  Increase::DeclinedTransaction::Source::CardDecline::NetworkDetails::Visa::OrHash
@@ -2152,7 +2180,10 @@ module Increase
2152
2180
  {
2153
2181
  category:
2154
2182
  Increase::DeclinedTransaction::Source::CardDecline::NetworkDetails::Category::TaggedSymbol,
2155
- pulse: T.nilable(T.anything),
2183
+ pulse:
2184
+ T.nilable(
2185
+ Increase::DeclinedTransaction::Source::CardDecline::NetworkDetails::Pulse
2186
+ ),
2156
2187
  visa:
2157
2188
  T.nilable(
2158
2189
  Increase::DeclinedTransaction::Source::CardDecline::NetworkDetails::Visa
@@ -2201,6 +2232,25 @@ module Increase
2201
2232
  end
2202
2233
  end
2203
2234
 
2235
+ class Pulse < Increase::Internal::Type::BaseModel
2236
+ OrHash =
2237
+ T.type_alias do
2238
+ T.any(
2239
+ Increase::DeclinedTransaction::Source::CardDecline::NetworkDetails::Pulse,
2240
+ Increase::Internal::AnyHash
2241
+ )
2242
+ end
2243
+
2244
+ # Fields specific to the `pulse` network.
2245
+ sig { returns(T.attached_class) }
2246
+ def self.new
2247
+ end
2248
+
2249
+ sig { override.returns({}) }
2250
+ def to_hash
2251
+ end
2252
+ end
2253
+
2204
2254
  class Visa < Increase::Internal::Type::BaseModel
2205
2255
  OrHash =
2206
2256
  T.type_alias do
@@ -4216,6 +4266,26 @@ module Increase
4216
4266
  end
4217
4267
  end
4218
4268
 
4269
+ class Other < Increase::Internal::Type::BaseModel
4270
+ OrHash =
4271
+ T.type_alias do
4272
+ T.any(
4273
+ Increase::DeclinedTransaction::Source::Other,
4274
+ Increase::Internal::AnyHash
4275
+ )
4276
+ end
4277
+
4278
+ # If the category of this Transaction source is equal to `other`, this field will
4279
+ # contain an empty object, otherwise it will contain null.
4280
+ sig { returns(T.attached_class) }
4281
+ def self.new
4282
+ end
4283
+
4284
+ sig { override.returns({}) }
4285
+ def to_hash
4286
+ end
4287
+ end
4288
+
4219
4289
  class WireDecline < Increase::Internal::Type::BaseModel
4220
4290
  OrHash =
4221
4291
  T.type_alias do
@@ -96,10 +96,12 @@ module Increase
96
96
  attr_writer :transaction_csv
97
97
 
98
98
  # Options for the created export. Required if `category` is equal to `vendor_csv`.
99
- sig { returns(T.nilable(T.anything)) }
99
+ sig { returns(T.nilable(Increase::ExportCreateParams::VendorCsv)) }
100
100
  attr_reader :vendor_csv
101
101
 
102
- sig { params(vendor_csv: T.anything).void }
102
+ sig do
103
+ params(vendor_csv: Increase::ExportCreateParams::VendorCsv::OrHash).void
104
+ end
103
105
  attr_writer :vendor_csv
104
106
 
105
107
  sig do
@@ -114,7 +116,7 @@ module Increase
114
116
  Increase::ExportCreateParams::BookkeepingAccountBalanceCsv::OrHash,
115
117
  entity_csv: Increase::ExportCreateParams::EntityCsv::OrHash,
116
118
  transaction_csv: Increase::ExportCreateParams::TransactionCsv::OrHash,
117
- vendor_csv: T.anything,
119
+ vendor_csv: Increase::ExportCreateParams::VendorCsv::OrHash,
118
120
  request_options: Increase::RequestOptions::OrHash
119
121
  ).returns(T.attached_class)
120
122
  end
@@ -157,7 +159,7 @@ module Increase
157
159
  Increase::ExportCreateParams::BookkeepingAccountBalanceCsv,
158
160
  entity_csv: Increase::ExportCreateParams::EntityCsv,
159
161
  transaction_csv: Increase::ExportCreateParams::TransactionCsv,
160
- vendor_csv: T.anything,
162
+ vendor_csv: Increase::ExportCreateParams::VendorCsv,
161
163
  request_options: Increase::RequestOptions
162
164
  }
163
165
  )
@@ -1025,6 +1027,25 @@ module Increase
1025
1027
  end
1026
1028
  end
1027
1029
  end
1030
+
1031
+ class VendorCsv < Increase::Internal::Type::BaseModel
1032
+ OrHash =
1033
+ T.type_alias do
1034
+ T.any(
1035
+ Increase::ExportCreateParams::VendorCsv,
1036
+ Increase::Internal::AnyHash
1037
+ )
1038
+ end
1039
+
1040
+ # Options for the created export. Required if `category` is equal to `vendor_csv`.
1041
+ sig { returns(T.attached_class) }
1042
+ def self.new
1043
+ end
1044
+
1045
+ sig { override.returns({}) }
1046
+ def to_hash
1047
+ end
1048
+ end
1028
1049
  end
1029
1050
  end
1030
1051
  end