-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmodels.rb
More file actions
604 lines (326 loc) · 21.1 KB
/
Copy pathmodels.rb
File metadata and controls
604 lines (326 loc) · 21.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
# frozen_string_literal: true
module Lithic
[Lithic::Internal::Type::BaseModel, *Lithic::Internal::Type::BaseModel.subclasses].each do |cls|
cls.define_sorbet_constant!(:OrHash) { T.type_alias { T.any(cls, Lithic::Internal::AnyHash) } }
end
Lithic::Internal::Util.walk_namespaces(Lithic::Models).each do |mod|
case mod
in Lithic::Internal::Type::Enum | Lithic::Internal::Type::Union
mod.constants.each do |name|
case mod.const_get(name)
in true | false
mod.define_sorbet_constant!(:TaggedBoolean) { T.type_alias { T::Boolean } }
mod.define_sorbet_constant!(:OrBoolean) { T.type_alias { T::Boolean } }
in Integer
mod.define_sorbet_constant!(:TaggedInteger) { T.type_alias { Integer } }
mod.define_sorbet_constant!(:OrInteger) { T.type_alias { Integer } }
in Float
mod.define_sorbet_constant!(:TaggedFloat) { T.type_alias { Float } }
mod.define_sorbet_constant!(:OrFloat) { T.type_alias { Float } }
in Symbol
mod.define_sorbet_constant!(:TaggedSymbol) { T.type_alias { Symbol } }
mod.define_sorbet_constant!(:OrSymbol) { T.type_alias { T.any(Symbol, String) } }
else
end
end
else
end
end
Lithic::Internal::Util.walk_namespaces(Lithic::Models)
.lazy
.grep(Lithic::Internal::Type::Union)
.each do |mod|
const = :Variants
next if mod.sorbet_constant_defined?(const)
mod.define_sorbet_constant!(const) { T.type_alias { mod.to_sorbet_type } }
end
Account = Lithic::Models::Account
AccountActivityListParams = Lithic::Models::AccountActivityListParams
AccountActivityRetrieveTransactionParams = Lithic::Models::AccountActivityRetrieveTransactionParams
AccountFinancialAccountType = Lithic::Models::AccountFinancialAccountType
AccountHolder = Lithic::Models::AccountHolder
AccountHolderCreatedWebhookEvent = Lithic::Models::AccountHolderCreatedWebhookEvent
AccountHolderCreateParams = Lithic::Models::AccountHolderCreateParams
AccountHolderDocumentUpdatedWebhookEvent = Lithic::Models::AccountHolderDocumentUpdatedWebhookEvent
AccountHolderListDocumentsParams = Lithic::Models::AccountHolderListDocumentsParams
AccountHolderListParams = Lithic::Models::AccountHolderListParams
AccountHolderRetrieveDocumentParams = Lithic::Models::AccountHolderRetrieveDocumentParams
AccountHolderRetrieveParams = Lithic::Models::AccountHolderRetrieveParams
AccountHolders = Lithic::Models::AccountHolders
AccountHolderSimulateEnrollmentDocumentReviewParams =
Lithic::Models::AccountHolderSimulateEnrollmentDocumentReviewParams
AccountHolderSimulateEnrollmentReviewParams = Lithic::Models::AccountHolderSimulateEnrollmentReviewParams
AccountHolderUpdatedWebhookEvent = Lithic::Models::AccountHolderUpdatedWebhookEvent
AccountHolderUpdateParams = Lithic::Models::AccountHolderUpdateParams
AccountHolderUploadDocumentParams = Lithic::Models::AccountHolderUploadDocumentParams
AccountHolderVerificationWebhookEvent = Lithic::Models::AccountHolderVerificationWebhookEvent
AccountListParams = Lithic::Models::AccountListParams
AccountRetrieveParams = Lithic::Models::AccountRetrieveParams
AccountRetrieveSignalsParams = Lithic::Models::AccountRetrieveSignalsParams
AccountRetrieveSpendLimitsParams = Lithic::Models::AccountRetrieveSpendLimitsParams
AccountSpendLimits = Lithic::Models::AccountSpendLimits
AccountUpdateParams = Lithic::Models::AccountUpdateParams
Address = Lithic::Models::Address
AddressUpdate = Lithic::Models::AddressUpdate
APIStatus = Lithic::Models::APIStatus
AuthRules = Lithic::Models::AuthRules
AuthRulesBacktestReportCreatedWebhookEvent = Lithic::Models::AuthRulesBacktestReportCreatedWebhookEvent
AuthStreamEnrollmentRetrieveSecretParams = Lithic::Models::AuthStreamEnrollmentRetrieveSecretParams
AuthStreamEnrollmentRotateSecretParams = Lithic::Models::AuthStreamEnrollmentRotateSecretParams
AuthStreamSecret = Lithic::Models::AuthStreamSecret
Balance = Lithic::Models::Balance
BalanceListParams = Lithic::Models::BalanceListParams
BalanceUpdatedWebhookEvent = Lithic::Models::BalanceUpdatedWebhookEvent
BookTransferCreateParams = Lithic::Models::BookTransferCreateParams
BookTransferListParams = Lithic::Models::BookTransferListParams
BookTransferResponse = Lithic::Models::BookTransferResponse
BookTransferRetrieveParams = Lithic::Models::BookTransferRetrieveParams
BookTransferRetryParams = Lithic::Models::BookTransferRetryParams
BookTransferReverseParams = Lithic::Models::BookTransferReverseParams
BookTransferTransactionCreatedWebhookEvent = Lithic::Models::BookTransferTransactionCreatedWebhookEvent
BookTransferTransactionUpdatedWebhookEvent = Lithic::Models::BookTransferTransactionUpdatedWebhookEvent
Card = Lithic::Models::Card
CardAuthorizationApprovalRequestWebhookEvent =
Lithic::Models::CardAuthorizationApprovalRequestWebhookEvent
CardAuthorizationChallengeResponseWebhookEvent =
Lithic::Models::CardAuthorizationChallengeResponseWebhookEvent
CardBulkOrder = Lithic::Models::CardBulkOrder
CardBulkOrderCreateParams = Lithic::Models::CardBulkOrderCreateParams
CardBulkOrderListParams = Lithic::Models::CardBulkOrderListParams
CardBulkOrderRetrieveParams = Lithic::Models::CardBulkOrderRetrieveParams
CardBulkOrderUpdateParams = Lithic::Models::CardBulkOrderUpdateParams
CardConvertedWebhookEvent = Lithic::Models::CardConvertedWebhookEvent
CardConvertPhysicalParams = Lithic::Models::CardConvertPhysicalParams
CardCreatedWebhookEvent = Lithic::Models::CardCreatedWebhookEvent
CardCreateParams = Lithic::Models::CardCreateParams
CardEmbedParams = Lithic::Models::CardEmbedParams
CardholderAuthentication = Lithic::Models::CardholderAuthentication
CardListParams = Lithic::Models::CardListParams
CardProgram = Lithic::Models::CardProgram
CardProgramListParams = Lithic::Models::CardProgramListParams
CardProgramRetrieveParams = Lithic::Models::CardProgramRetrieveParams
CardProvisionParams = Lithic::Models::CardProvisionParams
CardReissuedWebhookEvent = Lithic::Models::CardReissuedWebhookEvent
CardReissueParams = Lithic::Models::CardReissueParams
CardRenewedWebhookEvent = Lithic::Models::CardRenewedWebhookEvent
CardRenewParams = Lithic::Models::CardRenewParams
CardRetrieveParams = Lithic::Models::CardRetrieveParams
CardRetrieveSignalsParams = Lithic::Models::CardRetrieveSignalsParams
CardRetrieveSpendLimitsParams = Lithic::Models::CardRetrieveSpendLimitsParams
Cards = Lithic::Models::Cards
CardSearchByPanParams = Lithic::Models::CardSearchByPanParams
CardShippedWebhookEvent = Lithic::Models::CardShippedWebhookEvent
CardSpendLimits = Lithic::Models::CardSpendLimits
CardTransactionEnhancedDataCreatedWebhookEvent =
Lithic::Models::CardTransactionEnhancedDataCreatedWebhookEvent
CardTransactionEnhancedDataUpdatedWebhookEvent =
Lithic::Models::CardTransactionEnhancedDataUpdatedWebhookEvent
CardTransactionUpdatedWebhookEvent = Lithic::Models::CardTransactionUpdatedWebhookEvent
CardUpdatedWebhookEvent = Lithic::Models::CardUpdatedWebhookEvent
CardUpdateParams = Lithic::Models::CardUpdateParams
CardWebProvisionParams = Lithic::Models::CardWebProvisionParams
Carrier = Lithic::Models::Carrier
CategoryDetails = Lithic::Models::CategoryDetails
ClientAPIStatusParams = Lithic::Models::ClientAPIStatusParams
CreditProducts = Lithic::Models::CreditProducts
Currency = Lithic::Models::Currency
Device = Lithic::Models::Device
DigitalCardArtAPI = Lithic::Models::DigitalCardArtAPI
DigitalCardArtListParams = Lithic::Models::DigitalCardArtListParams
DigitalCardArtRetrieveParams = Lithic::Models::DigitalCardArtRetrieveParams
DigitalWalletTokenizationApprovalRequestWebhookEvent =
Lithic::Models::DigitalWalletTokenizationApprovalRequestWebhookEvent
DigitalWalletTokenizationResultWebhookEvent = Lithic::Models::DigitalWalletTokenizationResultWebhookEvent
DigitalWalletTokenizationTwoFactorAuthenticationCodeSentWebhookEvent =
Lithic::Models::DigitalWalletTokenizationTwoFactorAuthenticationCodeSentWebhookEvent
DigitalWalletTokenizationTwoFactorAuthenticationCodeWebhookEvent =
Lithic::Models::DigitalWalletTokenizationTwoFactorAuthenticationCodeWebhookEvent
DigitalWalletTokenizationUpdatedWebhookEvent =
Lithic::Models::DigitalWalletTokenizationUpdatedWebhookEvent
Dispute = Lithic::Models::Dispute
DisputeCreateParams = Lithic::Models::DisputeCreateParams
DisputeDeleteEvidenceParams = Lithic::Models::DisputeDeleteEvidenceParams
DisputeDeleteParams = Lithic::Models::DisputeDeleteParams
DisputeEvidence = Lithic::Models::DisputeEvidence
DisputeEvidenceUploadFailedWebhookEvent = Lithic::Models::DisputeEvidenceUploadFailedWebhookEvent
DisputeInitiateEvidenceUploadParams = Lithic::Models::DisputeInitiateEvidenceUploadParams
DisputeListEvidencesParams = Lithic::Models::DisputeListEvidencesParams
DisputeListParams = Lithic::Models::DisputeListParams
DisputeRetrieveEvidenceParams = Lithic::Models::DisputeRetrieveEvidenceParams
DisputeRetrieveParams = Lithic::Models::DisputeRetrieveParams
DisputesV2ListParams = Lithic::Models::DisputesV2ListParams
DisputesV2RetrieveParams = Lithic::Models::DisputesV2RetrieveParams
DisputeTransactionCreatedWebhookEvent = Lithic::Models::DisputeTransactionCreatedWebhookEvent
DisputeTransactionUpdatedWebhookEvent = Lithic::Models::DisputeTransactionUpdatedWebhookEvent
DisputeUpdatedWebhookEvent = Lithic::Models::DisputeUpdatedWebhookEvent
DisputeUpdateParams = Lithic::Models::DisputeUpdateParams
DisputeV2 = Lithic::Models::DisputeV2
Document = Lithic::Models::Document
Event = Lithic::Models::Event
EventListAttemptsParams = Lithic::Models::EventListAttemptsParams
EventListParams = Lithic::Models::EventListParams
EventRetrieveParams = Lithic::Models::EventRetrieveParams
Events = Lithic::Models::Events
EventSubscription = Lithic::Models::EventSubscription
ExternalBankAccount = Lithic::Models::ExternalBankAccount
ExternalBankAccountAddress = Lithic::Models::ExternalBankAccountAddress
ExternalBankAccountCreatedWebhookEvent = Lithic::Models::ExternalBankAccountCreatedWebhookEvent
ExternalBankAccountCreateParams = Lithic::Models::ExternalBankAccountCreateParams
ExternalBankAccountListParams = Lithic::Models::ExternalBankAccountListParams
ExternalBankAccountRetrieveParams = Lithic::Models::ExternalBankAccountRetrieveParams
ExternalBankAccountRetryMicroDepositsParams = Lithic::Models::ExternalBankAccountRetryMicroDepositsParams
ExternalBankAccountRetryPrenoteParams = Lithic::Models::ExternalBankAccountRetryPrenoteParams
ExternalBankAccounts = Lithic::Models::ExternalBankAccounts
ExternalBankAccountSetVerificationMethodParams =
Lithic::Models::ExternalBankAccountSetVerificationMethodParams
ExternalBankAccountUnpauseParams = Lithic::Models::ExternalBankAccountUnpauseParams
ExternalBankAccountUpdatedWebhookEvent = Lithic::Models::ExternalBankAccountUpdatedWebhookEvent
ExternalBankAccountUpdateParams = Lithic::Models::ExternalBankAccountUpdateParams
ExternalPayment = Lithic::Models::ExternalPayment
ExternalPaymentCancelParams = Lithic::Models::ExternalPaymentCancelParams
ExternalPaymentCreatedWebhookEvent = Lithic::Models::ExternalPaymentCreatedWebhookEvent
ExternalPaymentCreateParams = Lithic::Models::ExternalPaymentCreateParams
ExternalPaymentListParams = Lithic::Models::ExternalPaymentListParams
ExternalPaymentReleaseParams = Lithic::Models::ExternalPaymentReleaseParams
ExternalPaymentRetrieveParams = Lithic::Models::ExternalPaymentRetrieveParams
ExternalPaymentReverseParams = Lithic::Models::ExternalPaymentReverseParams
ExternalPaymentSettleParams = Lithic::Models::ExternalPaymentSettleParams
ExternalPaymentUpdatedWebhookEvent = Lithic::Models::ExternalPaymentUpdatedWebhookEvent
ExternalResource = Lithic::Models::ExternalResource
ExternalResourceType = Lithic::Models::ExternalResourceType
FinancialAccount = Lithic::Models::FinancialAccount
FinancialAccountBalance = Lithic::Models::FinancialAccountBalance
FinancialAccountCreatedWebhookEvent = Lithic::Models::FinancialAccountCreatedWebhookEvent
FinancialAccountCreateParams = Lithic::Models::FinancialAccountCreateParams
FinancialAccountListParams = Lithic::Models::FinancialAccountListParams
FinancialAccountRegisterAccountNumberParams = Lithic::Models::FinancialAccountRegisterAccountNumberParams
FinancialAccountRetrieveParams = Lithic::Models::FinancialAccountRetrieveParams
FinancialAccounts = Lithic::Models::FinancialAccounts
FinancialAccountUpdatedWebhookEvent = Lithic::Models::FinancialAccountUpdatedWebhookEvent
FinancialAccountUpdateParams = Lithic::Models::FinancialAccountUpdateParams
FinancialAccountUpdateStatusParams = Lithic::Models::FinancialAccountUpdateStatusParams
FinancialEvent = Lithic::Models::FinancialEvent
FinancialTransaction = Lithic::Models::FinancialTransaction
Fraud = Lithic::Models::Fraud
FundingEvent = Lithic::Models::FundingEvent
FundingEventCreatedWebhookEvent = Lithic::Models::FundingEventCreatedWebhookEvent
FundingEventListParams = Lithic::Models::FundingEventListParams
FundingEventRetrieveDetailsParams = Lithic::Models::FundingEventRetrieveDetailsParams
FundingEventRetrieveParams = Lithic::Models::FundingEventRetrieveParams
Hold = Lithic::Models::Hold
HoldCreateParams = Lithic::Models::HoldCreateParams
HoldEvent = Lithic::Models::HoldEvent
HoldListParams = Lithic::Models::HoldListParams
HoldRetrieveParams = Lithic::Models::HoldRetrieveParams
HoldVoidParams = Lithic::Models::HoldVoidParams
InstanceFinancialAccountType = Lithic::Models::InstanceFinancialAccountType
InternalTransactionAPI = Lithic::Models::InternalTransactionAPI
InternalTransactionCreatedWebhookEvent = Lithic::Models::InternalTransactionCreatedWebhookEvent
InternalTransactionUpdatedWebhookEvent = Lithic::Models::InternalTransactionUpdatedWebhookEvent
KYB = Lithic::Models::KYB
KYBBusinessEntity = Lithic::Models::KYBBusinessEntity
KYC = Lithic::Models::KYC
KYCExempt = Lithic::Models::KYCExempt
LoanTapeCreatedWebhookEvent = Lithic::Models::LoanTapeCreatedWebhookEvent
LoanTapeUpdatedWebhookEvent = Lithic::Models::LoanTapeUpdatedWebhookEvent
ManagementOperationCreatedWebhookEvent = Lithic::Models::ManagementOperationCreatedWebhookEvent
ManagementOperationCreateParams = Lithic::Models::ManagementOperationCreateParams
ManagementOperationListParams = Lithic::Models::ManagementOperationListParams
ManagementOperationRetrieveParams = Lithic::Models::ManagementOperationRetrieveParams
ManagementOperationReverseParams = Lithic::Models::ManagementOperationReverseParams
ManagementOperationTransaction = Lithic::Models::ManagementOperationTransaction
ManagementOperationUpdatedWebhookEvent = Lithic::Models::ManagementOperationUpdatedWebhookEvent
Merchant = Lithic::Models::Merchant
MessageAttempt = Lithic::Models::MessageAttempt
NetworkProgram = Lithic::Models::NetworkProgram
NetworkProgramListParams = Lithic::Models::NetworkProgramListParams
NetworkProgramRetrieveParams = Lithic::Models::NetworkProgramRetrieveParams
NetworkTotal = Lithic::Models::NetworkTotal
NetworkTotalCreatedWebhookEvent = Lithic::Models::NetworkTotalCreatedWebhookEvent
NetworkTotalUpdatedWebhookEvent = Lithic::Models::NetworkTotalUpdatedWebhookEvent
NonPCICard = Lithic::Models::NonPCICard
OwnerType = Lithic::Models::OwnerType
ParsedWebhookEvent = Lithic::Models::ParsedWebhookEvent
Payment = Lithic::Models::Payment
PaymentCreateParams = Lithic::Models::PaymentCreateParams
PaymentListParams = Lithic::Models::PaymentListParams
PaymentRetrieveParams = Lithic::Models::PaymentRetrieveParams
PaymentRetryParams = Lithic::Models::PaymentRetryParams
PaymentReturnParams = Lithic::Models::PaymentReturnParams
PaymentSimulateActionParams = Lithic::Models::PaymentSimulateActionParams
PaymentSimulateReceiptParams = Lithic::Models::PaymentSimulateReceiptParams
PaymentSimulateReleaseParams = Lithic::Models::PaymentSimulateReleaseParams
PaymentSimulateReturnParams = Lithic::Models::PaymentSimulateReturnParams
PaymentTransactionCreatedWebhookEvent = Lithic::Models::PaymentTransactionCreatedWebhookEvent
PaymentTransactionUpdatedWebhookEvent = Lithic::Models::PaymentTransactionUpdatedWebhookEvent
ProvisionResponse = Lithic::Models::ProvisionResponse
Reports = Lithic::Models::Reports
RequiredDocument = Lithic::Models::RequiredDocument
ResponderEndpointCheckStatusParams = Lithic::Models::ResponderEndpointCheckStatusParams
ResponderEndpointCreateParams = Lithic::Models::ResponderEndpointCreateParams
ResponderEndpointDeleteParams = Lithic::Models::ResponderEndpointDeleteParams
ResponderEndpointStatus = Lithic::Models::ResponderEndpointStatus
SettlementDetail = Lithic::Models::SettlementDetail
SettlementReport = Lithic::Models::SettlementReport
SettlementReportUpdatedWebhookEvent = Lithic::Models::SettlementReportUpdatedWebhookEvent
SettlementSummaryDetails = Lithic::Models::SettlementSummaryDetails
ShippingAddress = Lithic::Models::ShippingAddress
SignalsResponse = Lithic::Models::SignalsResponse
SpendLimitDuration = Lithic::Models::SpendLimitDuration
StatementsCreatedWebhookEvent = Lithic::Models::StatementsCreatedWebhookEvent
StatementTotals = Lithic::Models::StatementTotals
ThreeDS = Lithic::Models::ThreeDS
ThreeDSAuthentication = Lithic::Models::ThreeDSAuthentication
ThreeDSAuthenticationApprovalRequestWebhookEvent =
Lithic::Models::ThreeDSAuthenticationApprovalRequestWebhookEvent
ThreeDSAuthenticationChallengeWebhookEvent = Lithic::Models::ThreeDSAuthenticationChallengeWebhookEvent
ThreeDSAuthenticationCreatedWebhookEvent = Lithic::Models::ThreeDSAuthenticationCreatedWebhookEvent
ThreeDSAuthenticationUpdatedWebhookEvent = Lithic::Models::ThreeDSAuthenticationUpdatedWebhookEvent
TokenInfo = Lithic::Models::TokenInfo
Tokenization = Lithic::Models::Tokenization
TokenizationActivateParams = Lithic::Models::TokenizationActivateParams
TokenizationApprovalRequestWebhookEvent = Lithic::Models::TokenizationApprovalRequestWebhookEvent
TokenizationDeactivateParams = Lithic::Models::TokenizationDeactivateParams
TokenizationDecisioningRetrieveSecretParams = Lithic::Models::TokenizationDecisioningRetrieveSecretParams
TokenizationDecisioningRotateSecretParams = Lithic::Models::TokenizationDecisioningRotateSecretParams
TokenizationDeclineReason = Lithic::Models::TokenizationDeclineReason
TokenizationListParams = Lithic::Models::TokenizationListParams
TokenizationPauseParams = Lithic::Models::TokenizationPauseParams
TokenizationResendActivationCodeParams = Lithic::Models::TokenizationResendActivationCodeParams
TokenizationResultWebhookEvent = Lithic::Models::TokenizationResultWebhookEvent
TokenizationRetrieveParams = Lithic::Models::TokenizationRetrieveParams
TokenizationRuleResult = Lithic::Models::TokenizationRuleResult
TokenizationSecret = Lithic::Models::TokenizationSecret
TokenizationSimulateParams = Lithic::Models::TokenizationSimulateParams
TokenizationTfaReason = Lithic::Models::TokenizationTfaReason
TokenizationTwoFactorAuthenticationCodeSentWebhookEvent =
Lithic::Models::TokenizationTwoFactorAuthenticationCodeSentWebhookEvent
TokenizationTwoFactorAuthenticationCodeWebhookEvent =
Lithic::Models::TokenizationTwoFactorAuthenticationCodeWebhookEvent
TokenizationUnpauseParams = Lithic::Models::TokenizationUnpauseParams
TokenizationUpdateDigitalCardArtParams = Lithic::Models::TokenizationUpdateDigitalCardArtParams
TokenizationUpdatedWebhookEvent = Lithic::Models::TokenizationUpdatedWebhookEvent
TokenMetadata = Lithic::Models::TokenMetadata
Transaction = Lithic::Models::Transaction
TransactionExpireAuthorizationParams = Lithic::Models::TransactionExpireAuthorizationParams
TransactionListParams = Lithic::Models::TransactionListParams
TransactionRetrieveParams = Lithic::Models::TransactionRetrieveParams
Transactions = Lithic::Models::Transactions
TransactionSimulateAuthorizationAdviceParams =
Lithic::Models::TransactionSimulateAuthorizationAdviceParams
TransactionSimulateAuthorizationParams = Lithic::Models::TransactionSimulateAuthorizationParams
TransactionSimulateClearingParams = Lithic::Models::TransactionSimulateClearingParams
TransactionSimulateCreditAuthorizationAdviceParams =
Lithic::Models::TransactionSimulateCreditAuthorizationAdviceParams
TransactionSimulateReturnParams = Lithic::Models::TransactionSimulateReturnParams
TransactionSimulateReturnReversalParams = Lithic::Models::TransactionSimulateReturnReversalParams
TransactionSimulateVoidParams = Lithic::Models::TransactionSimulateVoidParams
Transfer = Lithic::Models::Transfer
TransferCreateParams = Lithic::Models::TransferCreateParams
TransferLimitListParams = Lithic::Models::TransferLimitListParams
TransferLimitsResponse = Lithic::Models::TransferLimitsResponse
VerificationMethod = Lithic::Models::VerificationMethod
WalletDecisioningInfo = Lithic::Models::WalletDecisioningInfo
WebhookParsedParams = Lithic::Models::WebhookParsedParams
WirePartyDetails = Lithic::Models::WirePartyDetails
end