-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.ts
1646 lines (1641 loc) · 149 KB
/
index.ts
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
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import { AbstractAccountUpdate as AbstractAccountUpdateModelImport } from "./src/models/AbstractAccountUpdate";
import { AbstractApplicationUserUpdate as AbstractApplicationUserUpdateModelImport } from "./src/models/AbstractApplicationUserUpdate";
import { AbstractCustomerActive as AbstractCustomerActiveModelImport } from "./src/models/AbstractCustomerActive";
import { AbstractCustomerAddressActive as AbstractCustomerAddressActiveModelImport } from "./src/models/AbstractCustomerAddressActive";
import { AbstractCustomerCommentActive as AbstractCustomerCommentActiveModelImport } from "./src/models/AbstractCustomerCommentActive";
import { AbstractDebtCollectionCaseUpdate as AbstractDebtCollectionCaseUpdateModelImport } from "./src/models/AbstractDebtCollectionCaseUpdate";
import { AbstractHumanUserUpdate as AbstractHumanUserUpdateModelImport } from "./src/models/AbstractHumanUserUpdate";
import { AbstractPaymentLinkUpdate as AbstractPaymentLinkUpdateModelImport } from "./src/models/AbstractPaymentLinkUpdate";
import { AbstractRefundCommentActive as AbstractRefundCommentActiveModelImport } from "./src/models/AbstractRefundCommentActive";
import { AbstractShopifySubscriptionProductUpdate as AbstractShopifySubscriptionProductUpdateModelImport } from "./src/models/AbstractShopifySubscriptionProductUpdate";
import { AbstractSpaceUpdate as AbstractSpaceUpdateModelImport } from "./src/models/AbstractSpaceUpdate";
import { AbstractSubscriberUpdate as AbstractSubscriberUpdateModelImport } from "./src/models/AbstractSubscriberUpdate";
import { AbstractSubscriptionAffiliateUpdate as AbstractSubscriptionAffiliateUpdateModelImport } from "./src/models/AbstractSubscriptionAffiliateUpdate";
import { AbstractSubscriptionMetricUpdate as AbstractSubscriptionMetricUpdateModelImport } from "./src/models/AbstractSubscriptionMetricUpdate";
import { AbstractSubscriptionProductActive as AbstractSubscriptionProductActiveModelImport } from "./src/models/AbstractSubscriptionProductActive";
import { AbstractTokenUpdate as AbstractTokenUpdateModelImport } from "./src/models/AbstractTokenUpdate";
import { AbstractTransactionCommentActive as AbstractTransactionCommentActiveModelImport } from "./src/models/AbstractTransactionCommentActive";
import { AbstractTransactionInvoiceCommentActive as AbstractTransactionInvoiceCommentActiveModelImport } from "./src/models/AbstractTransactionInvoiceCommentActive";
import { AbstractTransactionPending as AbstractTransactionPendingModelImport } from "./src/models/AbstractTransactionPending";
import { AbstractWebhookListenerUpdate as AbstractWebhookListenerUpdateModelImport } from "./src/models/AbstractWebhookListenerUpdate";
import { AbstractWebhookUrlUpdate as AbstractWebhookUrlUpdateModelImport } from "./src/models/AbstractWebhookUrlUpdate";
import { Account as AccountModelImport } from "./src/models/Account";
import { AccountState as AccountStateModelImport } from "./src/models/AccountState";
import { AccountType as AccountTypeModelImport } from "./src/models/AccountType";
import { Address as AddressModelImport } from "./src/models/Address";
import { AddressCreate as AddressCreateModelImport } from "./src/models/AddressCreate";
import { AnalyticsQuery as AnalyticsQueryModelImport } from "./src/models/AnalyticsQuery";
import { AnalyticsQueryExecution as AnalyticsQueryExecutionModelImport } from "./src/models/AnalyticsQueryExecution";
import { AnalyticsQueryExecutionState as AnalyticsQueryExecutionStateModelImport } from "./src/models/AnalyticsQueryExecutionState";
import { AnalyticsQueryResultBatch as AnalyticsQueryResultBatchModelImport } from "./src/models/AnalyticsQueryResultBatch";
import { AnalyticsSchemaColumn as AnalyticsSchemaColumnModelImport } from "./src/models/AnalyticsSchemaColumn";
import { AnalyticsSchemaTable as AnalyticsSchemaTableModelImport } from "./src/models/AnalyticsSchemaTable";
import { AuthenticatedCardDataCreate as AuthenticatedCardDataCreateModelImport } from "./src/models/AuthenticatedCardDataCreate";
import { BankAccount as BankAccountModelImport } from "./src/models/BankAccount";
import { BankAccountEnvironment as BankAccountEnvironmentModelImport } from "./src/models/BankAccountEnvironment";
import { BankAccountState as BankAccountStateModelImport } from "./src/models/BankAccountState";
import { BankAccountType as BankAccountTypeModelImport } from "./src/models/BankAccountType";
import { BankTransaction as BankTransactionModelImport } from "./src/models/BankTransaction";
import { BankTransactionFlowDirection as BankTransactionFlowDirectionModelImport } from "./src/models/BankTransactionFlowDirection";
import { BankTransactionSource as BankTransactionSourceModelImport } from "./src/models/BankTransactionSource";
import { BankTransactionState as BankTransactionStateModelImport } from "./src/models/BankTransactionState";
import { BankTransactionType as BankTransactionTypeModelImport } from "./src/models/BankTransactionType";
import { CardAuthenticationResponse as CardAuthenticationResponseModelImport } from "./src/models/CardAuthenticationResponse";
import { CardAuthenticationVersion as CardAuthenticationVersionModelImport } from "./src/models/CardAuthenticationVersion";
import { CardCryptogram as CardCryptogramModelImport } from "./src/models/CardCryptogram";
import { CardCryptogramCreate as CardCryptogramCreateModelImport } from "./src/models/CardCryptogramCreate";
import { CardCryptogramType as CardCryptogramTypeModelImport } from "./src/models/CardCryptogramType";
import { CardholderAuthentication as CardholderAuthenticationModelImport } from "./src/models/CardholderAuthentication";
import { CardholderAuthenticationCreate as CardholderAuthenticationCreateModelImport } from "./src/models/CardholderAuthenticationCreate";
import { ChargeAttemptEnvironment as ChargeAttemptEnvironmentModelImport } from "./src/models/ChargeAttemptEnvironment";
import { ChargeAttemptState as ChargeAttemptStateModelImport } from "./src/models/ChargeAttemptState";
import { ChargeFlow as ChargeFlowModelImport } from "./src/models/ChargeFlow";
import { ChargeFlowLevelConfiguration as ChargeFlowLevelConfigurationModelImport } from "./src/models/ChargeFlowLevelConfiguration";
import { ChargeFlowLevelConfigurationType as ChargeFlowLevelConfigurationTypeModelImport } from "./src/models/ChargeFlowLevelConfigurationType";
import { ChargeFlowLevelState as ChargeFlowLevelStateModelImport } from "./src/models/ChargeFlowLevelState";
import { ChargeState as ChargeStateModelImport } from "./src/models/ChargeState";
import { ChargeType as ChargeTypeModelImport } from "./src/models/ChargeType";
import { ClientError as ClientErrorModelImport } from "./src/models/ClientError";
import { ClientErrorType as ClientErrorTypeModelImport } from "./src/models/ClientErrorType";
import { CompletionLineItem as CompletionLineItemModelImport } from "./src/models/CompletionLineItem";
import { CompletionLineItemCreate as CompletionLineItemCreateModelImport } from "./src/models/CompletionLineItemCreate";
import { Condition as ConditionModelImport } from "./src/models/Condition";
import { ConditionType as ConditionTypeModelImport } from "./src/models/ConditionType";
import { ConnectorInvocationStage as ConnectorInvocationStageModelImport } from "./src/models/ConnectorInvocationStage";
import { CreationEntityState as CreationEntityStateModelImport } from "./src/models/CreationEntityState";
import { CriteriaOperator as CriteriaOperatorModelImport } from "./src/models/CriteriaOperator";
import { CurrencyBankAccount as CurrencyBankAccountModelImport } from "./src/models/CurrencyBankAccount";
import { Customer as CustomerModelImport } from "./src/models/Customer";
import { CustomerAddress as CustomerAddressModelImport } from "./src/models/CustomerAddress";
import { CustomerAddressType as CustomerAddressTypeModelImport } from "./src/models/CustomerAddressType";
import { CustomerComment as CustomerCommentModelImport } from "./src/models/CustomerComment";
import { CustomerPostalAddress as CustomerPostalAddressModelImport } from "./src/models/CustomerPostalAddress";
import { CustomerPostalAddressCreate as CustomerPostalAddressCreateModelImport } from "./src/models/CustomerPostalAddressCreate";
import { CustomersPresence as CustomersPresenceModelImport } from "./src/models/CustomersPresence";
import { DataCollectionType as DataCollectionTypeModelImport } from "./src/models/DataCollectionType";
import { DebtCollectionCase as DebtCollectionCaseModelImport } from "./src/models/DebtCollectionCase";
import { DebtCollectionCaseDocument as DebtCollectionCaseDocumentModelImport } from "./src/models/DebtCollectionCaseDocument";
import { DebtCollectionCaseSource as DebtCollectionCaseSourceModelImport } from "./src/models/DebtCollectionCaseSource";
import { DebtCollectionCaseState as DebtCollectionCaseStateModelImport } from "./src/models/DebtCollectionCaseState";
import { DebtCollectionEnvironment as DebtCollectionEnvironmentModelImport } from "./src/models/DebtCollectionEnvironment";
import { DebtCollectionReceipt as DebtCollectionReceiptModelImport } from "./src/models/DebtCollectionReceipt";
import { DebtCollectionReceiptSource as DebtCollectionReceiptSourceModelImport } from "./src/models/DebtCollectionReceiptSource";
import { DebtCollector as DebtCollectorModelImport } from "./src/models/DebtCollector";
import { DebtCollectorCondition as DebtCollectorConditionModelImport } from "./src/models/DebtCollectorCondition";
import { DebtCollectorConditionType as DebtCollectorConditionTypeModelImport } from "./src/models/DebtCollectorConditionType";
import { DebtCollectorConfiguration as DebtCollectorConfigurationModelImport } from "./src/models/DebtCollectorConfiguration";
import { DeliveryIndicationDecisionReason as DeliveryIndicationDecisionReasonModelImport } from "./src/models/DeliveryIndicationDecisionReason";
import { DeliveryIndicationState as DeliveryIndicationStateModelImport } from "./src/models/DeliveryIndicationState";
import { DocumentTemplate as DocumentTemplateModelImport } from "./src/models/DocumentTemplate";
import { DocumentTemplateType as DocumentTemplateTypeModelImport } from "./src/models/DocumentTemplateType";
import { DocumentTemplateTypeGroup as DocumentTemplateTypeGroupModelImport } from "./src/models/DocumentTemplateTypeGroup";
import { EntityExportRequest as EntityExportRequestModelImport } from "./src/models/EntityExportRequest";
import { EntityQuery as EntityQueryModelImport } from "./src/models/EntityQuery";
import { EntityQueryFilter as EntityQueryFilterModelImport } from "./src/models/EntityQueryFilter";
import { EntityQueryFilterType as EntityQueryFilterTypeModelImport } from "./src/models/EntityQueryFilterType";
import { EntityQueryOrderBy as EntityQueryOrderByModelImport } from "./src/models/EntityQueryOrderBy";
import { EntityQueryOrderByType as EntityQueryOrderByTypeModelImport } from "./src/models/EntityQueryOrderByType";
import { Environment as EnvironmentModelImport } from "./src/models/Environment";
import { ExternalTransferBankTransaction as ExternalTransferBankTransactionModelImport } from "./src/models/ExternalTransferBankTransaction";
import { FailureCategory as FailureCategoryModelImport } from "./src/models/FailureCategory";
import { FailureReason as FailureReasonModelImport } from "./src/models/FailureReason";
import { Feature as FeatureModelImport } from "./src/models/Feature";
import { FeatureCategory as FeatureCategoryModelImport } from "./src/models/FeatureCategory";
import { Gender as GenderModelImport } from "./src/models/Gender";
import { HumanUser as HumanUserModelImport } from "./src/models/HumanUser";
import { InstallmentCalculatedPlan as InstallmentCalculatedPlanModelImport } from "./src/models/InstallmentCalculatedPlan";
import { InstallmentCalculatedSlice as InstallmentCalculatedSliceModelImport } from "./src/models/InstallmentCalculatedSlice";
import { InstallmentPayment as InstallmentPaymentModelImport } from "./src/models/InstallmentPayment";
import { InstallmentPaymentSliceState as InstallmentPaymentSliceStateModelImport } from "./src/models/InstallmentPaymentSliceState";
import { InstallmentPaymentState as InstallmentPaymentStateModelImport } from "./src/models/InstallmentPaymentState";
import { InstallmentPlanConfiguration as InstallmentPlanConfigurationModelImport } from "./src/models/InstallmentPlanConfiguration";
import { InstallmentPlanSliceConfiguration as InstallmentPlanSliceConfigurationModelImport } from "./src/models/InstallmentPlanSliceConfiguration";
import { InternalTransferBankTransaction as InternalTransferBankTransactionModelImport } from "./src/models/InternalTransferBankTransaction";
import { InvoiceReconciliationRecordInvoiceLink as InvoiceReconciliationRecordInvoiceLinkModelImport } from "./src/models/InvoiceReconciliationRecordInvoiceLink";
import { InvoiceReconciliationRecordRejectionStatus as InvoiceReconciliationRecordRejectionStatusModelImport } from "./src/models/InvoiceReconciliationRecordRejectionStatus";
import { InvoiceReconciliationRecordState as InvoiceReconciliationRecordStateModelImport } from "./src/models/InvoiceReconciliationRecordState";
import { InvoiceReconciliationRecordType as InvoiceReconciliationRecordTypeModelImport } from "./src/models/InvoiceReconciliationRecordType";
import { InvoiceReimbursement as InvoiceReimbursementModelImport } from "./src/models/InvoiceReimbursement";
import { InvoiceReimbursementState as InvoiceReimbursementStateModelImport } from "./src/models/InvoiceReimbursementState";
import { Label as LabelModelImport } from "./src/models/Label";
import { LabelDescriptor as LabelDescriptorModelImport } from "./src/models/LabelDescriptor";
import { LabelDescriptorCategory as LabelDescriptorCategoryModelImport } from "./src/models/LabelDescriptorCategory";
import { LabelDescriptorGroup as LabelDescriptorGroupModelImport } from "./src/models/LabelDescriptorGroup";
import { LabelDescriptorType as LabelDescriptorTypeModelImport } from "./src/models/LabelDescriptorType";
import { LegalOrganizationForm as LegalOrganizationFormModelImport } from "./src/models/LegalOrganizationForm";
import { LineItem as LineItemModelImport } from "./src/models/LineItem";
import { LineItemAttribute as LineItemAttributeModelImport } from "./src/models/LineItemAttribute";
import { LineItemAttributeCreate as LineItemAttributeCreateModelImport } from "./src/models/LineItemAttributeCreate";
import { LineItemCreate as LineItemCreateModelImport } from "./src/models/LineItemCreate";
import { LineItemReduction as LineItemReductionModelImport } from "./src/models/LineItemReduction";
import { LineItemReductionCreate as LineItemReductionCreateModelImport } from "./src/models/LineItemReductionCreate";
import { LineItemType as LineItemTypeModelImport } from "./src/models/LineItemType";
import { LocalizedString as LocalizedStringModelImport } from "./src/models/LocalizedString";
import { ManualTask as ManualTaskModelImport } from "./src/models/ManualTask";
import { ManualTaskAction as ManualTaskActionModelImport } from "./src/models/ManualTaskAction";
import { ManualTaskActionStyle as ManualTaskActionStyleModelImport } from "./src/models/ManualTaskActionStyle";
import { ManualTaskState as ManualTaskStateModelImport } from "./src/models/ManualTaskState";
import { ManualTaskType as ManualTaskTypeModelImport } from "./src/models/ManualTaskType";
import { MetricUsage as MetricUsageModelImport } from "./src/models/MetricUsage";
import { OneClickPaymentMode as OneClickPaymentModeModelImport } from "./src/models/OneClickPaymentMode";
import { PaymentAdjustment as PaymentAdjustmentModelImport } from "./src/models/PaymentAdjustment";
import { PaymentAdjustmentType as PaymentAdjustmentTypeModelImport } from "./src/models/PaymentAdjustmentType";
import { PaymentAppChargeAttemptTargetState as PaymentAppChargeAttemptTargetStateModelImport } from "./src/models/PaymentAppChargeAttemptTargetState";
import { PaymentAppChargeAttemptUpdateRequest as PaymentAppChargeAttemptUpdateRequestModelImport } from "./src/models/PaymentAppChargeAttemptUpdateRequest";
import { PaymentAppCompletionConfiguration as PaymentAppCompletionConfigurationModelImport } from "./src/models/PaymentAppCompletionConfiguration";
import { PaymentAppCompletionConfigurationCreate as PaymentAppCompletionConfigurationCreateModelImport } from "./src/models/PaymentAppCompletionConfigurationCreate";
import { PaymentAppCompletionTargetState as PaymentAppCompletionTargetStateModelImport } from "./src/models/PaymentAppCompletionTargetState";
import { PaymentAppCompletionUpdateRequest as PaymentAppCompletionUpdateRequestModelImport } from "./src/models/PaymentAppCompletionUpdateRequest";
import { PaymentAppConnector as PaymentAppConnectorModelImport } from "./src/models/PaymentAppConnector";
import { PaymentAppConnectorCreationRequest as PaymentAppConnectorCreationRequestModelImport } from "./src/models/PaymentAppConnectorCreationRequest";
import { PaymentAppConnectorState as PaymentAppConnectorStateModelImport } from "./src/models/PaymentAppConnectorState";
import { PaymentAppProcessor as PaymentAppProcessorModelImport } from "./src/models/PaymentAppProcessor";
import { PaymentAppProcessorCreationRequest as PaymentAppProcessorCreationRequestModelImport } from "./src/models/PaymentAppProcessorCreationRequest";
import { PaymentAppProcessorState as PaymentAppProcessorStateModelImport } from "./src/models/PaymentAppProcessorState";
import { PaymentAppRefundConfiguration as PaymentAppRefundConfigurationModelImport } from "./src/models/PaymentAppRefundConfiguration";
import { PaymentAppRefundConfigurationCreate as PaymentAppRefundConfigurationCreateModelImport } from "./src/models/PaymentAppRefundConfigurationCreate";
import { PaymentAppRefundTargetState as PaymentAppRefundTargetStateModelImport } from "./src/models/PaymentAppRefundTargetState";
import { PaymentAppRefundUpdateRequest as PaymentAppRefundUpdateRequestModelImport } from "./src/models/PaymentAppRefundUpdateRequest";
import { PaymentAppVoidTargetState as PaymentAppVoidTargetStateModelImport } from "./src/models/PaymentAppVoidTargetState";
import { PaymentAppVoidUpdateRequest as PaymentAppVoidUpdateRequestModelImport } from "./src/models/PaymentAppVoidUpdateRequest";
import { PaymentConnector as PaymentConnectorModelImport } from "./src/models/PaymentConnector";
import { PaymentConnectorConfiguration as PaymentConnectorConfigurationModelImport } from "./src/models/PaymentConnectorConfiguration";
import { PaymentConnectorFeature as PaymentConnectorFeatureModelImport } from "./src/models/PaymentConnectorFeature";
import { PaymentContract as PaymentContractModelImport } from "./src/models/PaymentContract";
import { PaymentContractState as PaymentContractStateModelImport } from "./src/models/PaymentContractState";
import { PaymentContractType as PaymentContractTypeModelImport } from "./src/models/PaymentContractType";
import { PaymentInformationHash as PaymentInformationHashModelImport } from "./src/models/PaymentInformationHash";
import { PaymentInformationHashType as PaymentInformationHashTypeModelImport } from "./src/models/PaymentInformationHashType";
import { PaymentInitiationAdviceFile as PaymentInitiationAdviceFileModelImport } from "./src/models/PaymentInitiationAdviceFile";
import { PaymentInitiationAdviceFileState as PaymentInitiationAdviceFileStateModelImport } from "./src/models/PaymentInitiationAdviceFileState";
import { PaymentLink as PaymentLinkModelImport } from "./src/models/PaymentLink";
import { PaymentLinkAddressHandlingMode as PaymentLinkAddressHandlingModeModelImport } from "./src/models/PaymentLinkAddressHandlingMode";
import { PaymentLinkProtectionMode as PaymentLinkProtectionModeModelImport } from "./src/models/PaymentLinkProtectionMode";
import { PaymentLinkUpdate as PaymentLinkUpdateModelImport } from "./src/models/PaymentLinkUpdate";
import { PaymentMethod as PaymentMethodModelImport } from "./src/models/PaymentMethod";
import { PaymentMethodBrand as PaymentMethodBrandModelImport } from "./src/models/PaymentMethodBrand";
import { PaymentMethodConfiguration as PaymentMethodConfigurationModelImport } from "./src/models/PaymentMethodConfiguration";
import { PaymentPrimaryRiskTaker as PaymentPrimaryRiskTakerModelImport } from "./src/models/PaymentPrimaryRiskTaker";
import { PaymentProcessor as PaymentProcessorModelImport } from "./src/models/PaymentProcessor";
import { PaymentProcessorConfiguration as PaymentProcessorConfigurationModelImport } from "./src/models/PaymentProcessorConfiguration";
import { PaymentTerminal as PaymentTerminalModelImport } from "./src/models/PaymentTerminal";
import { PaymentTerminalAddress as PaymentTerminalAddressModelImport } from "./src/models/PaymentTerminalAddress";
import { PaymentTerminalConfiguration as PaymentTerminalConfigurationModelImport } from "./src/models/PaymentTerminalConfiguration";
import { PaymentTerminalConfigurationState as PaymentTerminalConfigurationStateModelImport } from "./src/models/PaymentTerminalConfigurationState";
import { PaymentTerminalConfigurationVersion as PaymentTerminalConfigurationVersionModelImport } from "./src/models/PaymentTerminalConfigurationVersion";
import { PaymentTerminalConfigurationVersionState as PaymentTerminalConfigurationVersionStateModelImport } from "./src/models/PaymentTerminalConfigurationVersionState";
import { PaymentTerminalDccTransactionSum as PaymentTerminalDccTransactionSumModelImport } from "./src/models/PaymentTerminalDccTransactionSum";
import { PaymentTerminalLocation as PaymentTerminalLocationModelImport } from "./src/models/PaymentTerminalLocation";
import { PaymentTerminalLocationState as PaymentTerminalLocationStateModelImport } from "./src/models/PaymentTerminalLocationState";
import { PaymentTerminalLocationVersion as PaymentTerminalLocationVersionModelImport } from "./src/models/PaymentTerminalLocationVersion";
import { PaymentTerminalLocationVersionState as PaymentTerminalLocationVersionStateModelImport } from "./src/models/PaymentTerminalLocationVersionState";
import { PaymentTerminalReceiptType as PaymentTerminalReceiptTypeModelImport } from "./src/models/PaymentTerminalReceiptType";
import { PaymentTerminalState as PaymentTerminalStateModelImport } from "./src/models/PaymentTerminalState";
import { PaymentTerminalTransactionSum as PaymentTerminalTransactionSumModelImport } from "./src/models/PaymentTerminalTransactionSum";
import { PaymentTerminalTransactionSummary as PaymentTerminalTransactionSummaryModelImport } from "./src/models/PaymentTerminalTransactionSummary";
import { PaymentTerminalTransactionSummaryFetchRequest as PaymentTerminalTransactionSummaryFetchRequestModelImport } from "./src/models/PaymentTerminalTransactionSummaryFetchRequest";
import { PaymentTerminalType as PaymentTerminalTypeModelImport } from "./src/models/PaymentTerminalType";
import { Permission as PermissionModelImport } from "./src/models/Permission";
import { PersistableCurrencyAmount as PersistableCurrencyAmountModelImport } from "./src/models/PersistableCurrencyAmount";
import { PersistableCurrencyAmountUpdate as PersistableCurrencyAmountUpdateModelImport } from "./src/models/PersistableCurrencyAmountUpdate";
import { ProductFeeType as ProductFeeTypeModelImport } from "./src/models/ProductFeeType";
import { ProductMeteredFee as ProductMeteredFeeModelImport } from "./src/models/ProductMeteredFee";
import { ProductMeteredFeeUpdate as ProductMeteredFeeUpdateModelImport } from "./src/models/ProductMeteredFeeUpdate";
import { ProductMeteredTierFee as ProductMeteredTierFeeModelImport } from "./src/models/ProductMeteredTierFee";
import { ProductMeteredTierFeeUpdate as ProductMeteredTierFeeUpdateModelImport } from "./src/models/ProductMeteredTierFeeUpdate";
import { ProductMeteredTierPricing as ProductMeteredTierPricingModelImport } from "./src/models/ProductMeteredTierPricing";
import { ProductPeriodFee as ProductPeriodFeeModelImport } from "./src/models/ProductPeriodFee";
import { ProductPeriodFeeUpdate as ProductPeriodFeeUpdateModelImport } from "./src/models/ProductPeriodFeeUpdate";
import { ProductSetupFee as ProductSetupFeeModelImport } from "./src/models/ProductSetupFee";
import { ProductSetupFeeUpdate as ProductSetupFeeUpdateModelImport } from "./src/models/ProductSetupFeeUpdate";
import { RecurringIndicator as RecurringIndicatorModelImport } from "./src/models/RecurringIndicator";
import { Refund as RefundModelImport } from "./src/models/Refund";
import { RefundComment as RefundCommentModelImport } from "./src/models/RefundComment";
import { RefundCreate as RefundCreateModelImport } from "./src/models/RefundCreate";
import { RefundState as RefundStateModelImport } from "./src/models/RefundState";
import { RefundType as RefundTypeModelImport } from "./src/models/RefundType";
import { RenderedDocument as RenderedDocumentModelImport } from "./src/models/RenderedDocument";
import { RenderedTerminalReceipt as RenderedTerminalReceiptModelImport } from "./src/models/RenderedTerminalReceipt";
import { RenderedTerminalTransactionSummary as RenderedTerminalTransactionSummaryModelImport } from "./src/models/RenderedTerminalTransactionSummary";
import { ResourcePath as ResourcePathModelImport } from "./src/models/ResourcePath";
import { ResourceState as ResourceStateModelImport } from "./src/models/ResourceState";
import { RestAddressFormat as RestAddressFormatModelImport } from "./src/models/RestAddressFormat";
import { RestAddressFormatField as RestAddressFormatFieldModelImport } from "./src/models/RestAddressFormatField";
import { RestCountry as RestCountryModelImport } from "./src/models/RestCountry";
import { RestCountryState as RestCountryStateModelImport } from "./src/models/RestCountryState";
import { RestCurrency as RestCurrencyModelImport } from "./src/models/RestCurrency";
import { RestLanguage as RestLanguageModelImport } from "./src/models/RestLanguage";
import { Role as RoleModelImport } from "./src/models/Role";
import { RoleState as RoleStateModelImport } from "./src/models/RoleState";
import { SalesChannel as SalesChannelModelImport } from "./src/models/SalesChannel";
import { Scope as ScopeModelImport } from "./src/models/Scope";
import { ServerError as ServerErrorModelImport } from "./src/models/ServerError";
import { ShopifyAdditionalLineItemData as ShopifyAdditionalLineItemDataModelImport } from "./src/models/ShopifyAdditionalLineItemData";
import { ShopifyIntegration as ShopifyIntegrationModelImport } from "./src/models/ShopifyIntegration";
import { ShopifyIntegrationPaymentAppVersion as ShopifyIntegrationPaymentAppVersionModelImport } from "./src/models/ShopifyIntegrationPaymentAppVersion";
import { ShopifyIntegrationSubscriptionAppVersion as ShopifyIntegrationSubscriptionAppVersionModelImport } from "./src/models/ShopifyIntegrationSubscriptionAppVersion";
import { ShopifyRecurringOrderState as ShopifyRecurringOrderStateModelImport } from "./src/models/ShopifyRecurringOrderState";
import { ShopifyRecurringOrderUpdateRequest as ShopifyRecurringOrderUpdateRequestModelImport } from "./src/models/ShopifyRecurringOrderUpdateRequest";
import { ShopifySubscriber as ShopifySubscriberModelImport } from "./src/models/ShopifySubscriber";
import { ShopifySubscriberActive as ShopifySubscriberActiveModelImport } from "./src/models/ShopifySubscriberActive";
import { ShopifySubscriberCreation as ShopifySubscriberCreationModelImport } from "./src/models/ShopifySubscriberCreation";
import { ShopifySubscriberState as ShopifySubscriberStateModelImport } from "./src/models/ShopifySubscriberState";
import { ShopifySubscription as ShopifySubscriptionModelImport } from "./src/models/ShopifySubscription";
import { ShopifySubscriptionAddressCreate as ShopifySubscriptionAddressCreateModelImport } from "./src/models/ShopifySubscriptionAddressCreate";
import { ShopifySubscriptionBillingIntervalUnit as ShopifySubscriptionBillingIntervalUnitModelImport } from "./src/models/ShopifySubscriptionBillingIntervalUnit";
import { ShopifySubscriptionCreationRequest as ShopifySubscriptionCreationRequestModelImport } from "./src/models/ShopifySubscriptionCreationRequest";
import { ShopifySubscriptionModelBillingConfiguration as ShopifySubscriptionModelBillingConfigurationModelImport } from "./src/models/ShopifySubscriptionModelBillingConfiguration";
import { ShopifySubscriptionModelItem as ShopifySubscriptionModelItemModelImport } from "./src/models/ShopifySubscriptionModelItem";
import { ShopifySubscriptionModelTaxLine as ShopifySubscriptionModelTaxLineModelImport } from "./src/models/ShopifySubscriptionModelTaxLine";
import { ShopifySubscriptionProduct as ShopifySubscriptionProductModelImport } from "./src/models/ShopifySubscriptionProduct";
import { ShopifySubscriptionProductPricingOption as ShopifySubscriptionProductPricingOptionModelImport } from "./src/models/ShopifySubscriptionProductPricingOption";
import { ShopifySubscriptionProductState as ShopifySubscriptionProductStateModelImport } from "./src/models/ShopifySubscriptionProductState";
import { ShopifySubscriptionState as ShopifySubscriptionStateModelImport } from "./src/models/ShopifySubscriptionState";
import { ShopifySubscriptionSuspension as ShopifySubscriptionSuspensionModelImport } from "./src/models/ShopifySubscriptionSuspension";
import { ShopifySubscriptionSuspensionCreate as ShopifySubscriptionSuspensionCreateModelImport } from "./src/models/ShopifySubscriptionSuspensionCreate";
import { ShopifySubscriptionSuspensionInitiator as ShopifySubscriptionSuspensionInitiatorModelImport } from "./src/models/ShopifySubscriptionSuspensionInitiator";
import { ShopifySubscriptionSuspensionState as ShopifySubscriptionSuspensionStateModelImport } from "./src/models/ShopifySubscriptionSuspensionState";
import { ShopifySubscriptionSuspensionType as ShopifySubscriptionSuspensionTypeModelImport } from "./src/models/ShopifySubscriptionSuspensionType";
import { ShopifySubscriptionUpdateAddressesRequest as ShopifySubscriptionUpdateAddressesRequestModelImport } from "./src/models/ShopifySubscriptionUpdateAddressesRequest";
import { ShopifySubscriptionUpdateRequest as ShopifySubscriptionUpdateRequestModelImport } from "./src/models/ShopifySubscriptionUpdateRequest";
import { ShopifySubscriptionVersion as ShopifySubscriptionVersionModelImport } from "./src/models/ShopifySubscriptionVersion";
import { ShopifySubscriptionVersionItem as ShopifySubscriptionVersionItemModelImport } from "./src/models/ShopifySubscriptionVersionItem";
import { ShopifySubscriptionVersionItemPriceStrategy as ShopifySubscriptionVersionItemPriceStrategyModelImport } from "./src/models/ShopifySubscriptionVersionItemPriceStrategy";
import { ShopifySubscriptionVersionState as ShopifySubscriptionVersionStateModelImport } from "./src/models/ShopifySubscriptionVersionState";
import { ShopifySubscriptionWeekday as ShopifySubscriptionWeekdayModelImport } from "./src/models/ShopifySubscriptionWeekday";
import { ShopifyTaxLine as ShopifyTaxLineModelImport } from "./src/models/ShopifyTaxLine";
import { ShopifyTransactionState as ShopifyTransactionStateModelImport } from "./src/models/ShopifyTransactionState";
import { Space as SpaceModelImport } from "./src/models/Space";
import { SpaceAddress as SpaceAddressModelImport } from "./src/models/SpaceAddress";
import { SpaceAddressCreate as SpaceAddressCreateModelImport } from "./src/models/SpaceAddressCreate";
import { SpaceReference as SpaceReferenceModelImport } from "./src/models/SpaceReference";
import { SpaceReferenceState as SpaceReferenceStateModelImport } from "./src/models/SpaceReferenceState";
import { SpaceView as SpaceViewModelImport } from "./src/models/SpaceView";
import { StaticValue as StaticValueModelImport } from "./src/models/StaticValue";
import { Subscriber as SubscriberModelImport } from "./src/models/Subscriber";
import { SubscriberUpdate as SubscriberUpdateModelImport } from "./src/models/SubscriberUpdate";
import { Subscription as SubscriptionModelImport } from "./src/models/Subscription";
import { SubscriptionAffiliate as SubscriptionAffiliateModelImport } from "./src/models/SubscriptionAffiliate";
import { SubscriptionAffiliateUpdate as SubscriptionAffiliateUpdateModelImport } from "./src/models/SubscriptionAffiliateUpdate";
import { SubscriptionChangeRequest as SubscriptionChangeRequestModelImport } from "./src/models/SubscriptionChangeRequest";
import { SubscriptionCharge as SubscriptionChargeModelImport } from "./src/models/SubscriptionCharge";
import { SubscriptionChargeCreate as SubscriptionChargeCreateModelImport } from "./src/models/SubscriptionChargeCreate";
import { SubscriptionChargeProcessingType as SubscriptionChargeProcessingTypeModelImport } from "./src/models/SubscriptionChargeProcessingType";
import { SubscriptionChargeState as SubscriptionChargeStateModelImport } from "./src/models/SubscriptionChargeState";
import { SubscriptionChargeType as SubscriptionChargeTypeModelImport } from "./src/models/SubscriptionChargeType";
import { SubscriptionComponentConfiguration as SubscriptionComponentConfigurationModelImport } from "./src/models/SubscriptionComponentConfiguration";
import { SubscriptionComponentReferenceConfiguration as SubscriptionComponentReferenceConfigurationModelImport } from "./src/models/SubscriptionComponentReferenceConfiguration";
import { SubscriptionCreateRequest as SubscriptionCreateRequestModelImport } from "./src/models/SubscriptionCreateRequest";
import { SubscriptionLedgerEntry as SubscriptionLedgerEntryModelImport } from "./src/models/SubscriptionLedgerEntry";
import { SubscriptionLedgerEntryCreate as SubscriptionLedgerEntryCreateModelImport } from "./src/models/SubscriptionLedgerEntryCreate";
import { SubscriptionLedgerEntryState as SubscriptionLedgerEntryStateModelImport } from "./src/models/SubscriptionLedgerEntryState";
import { SubscriptionMetric as SubscriptionMetricModelImport } from "./src/models/SubscriptionMetric";
import { SubscriptionMetricType as SubscriptionMetricTypeModelImport } from "./src/models/SubscriptionMetricType";
import { SubscriptionMetricUpdate as SubscriptionMetricUpdateModelImport } from "./src/models/SubscriptionMetricUpdate";
import { SubscriptionMetricUsageReport as SubscriptionMetricUsageReportModelImport } from "./src/models/SubscriptionMetricUsageReport";
import { SubscriptionMetricUsageReportCreate as SubscriptionMetricUsageReportCreateModelImport } from "./src/models/SubscriptionMetricUsageReportCreate";
import { SubscriptionPeriodBill as SubscriptionPeriodBillModelImport } from "./src/models/SubscriptionPeriodBill";
import { SubscriptionPeriodBillState as SubscriptionPeriodBillStateModelImport } from "./src/models/SubscriptionPeriodBillState";
import { SubscriptionProduct as SubscriptionProductModelImport } from "./src/models/SubscriptionProduct";
import { SubscriptionProductComponent as SubscriptionProductComponentModelImport } from "./src/models/SubscriptionProductComponent";
import { SubscriptionProductComponentGroup as SubscriptionProductComponentGroupModelImport } from "./src/models/SubscriptionProductComponentGroup";
import { SubscriptionProductComponentGroupUpdate as SubscriptionProductComponentGroupUpdateModelImport } from "./src/models/SubscriptionProductComponentGroupUpdate";
import { SubscriptionProductComponentReference as SubscriptionProductComponentReferenceModelImport } from "./src/models/SubscriptionProductComponentReference";
import { SubscriptionProductComponentReferenceState as SubscriptionProductComponentReferenceStateModelImport } from "./src/models/SubscriptionProductComponentReferenceState";
import { SubscriptionProductComponentUpdate as SubscriptionProductComponentUpdateModelImport } from "./src/models/SubscriptionProductComponentUpdate";
import { SubscriptionProductRetirement as SubscriptionProductRetirementModelImport } from "./src/models/SubscriptionProductRetirement";
import { SubscriptionProductRetirementCreate as SubscriptionProductRetirementCreateModelImport } from "./src/models/SubscriptionProductRetirementCreate";
import { SubscriptionProductState as SubscriptionProductStateModelImport } from "./src/models/SubscriptionProductState";
import { SubscriptionProductVersion as SubscriptionProductVersionModelImport } from "./src/models/SubscriptionProductVersion";
import { SubscriptionProductVersionPending as SubscriptionProductVersionPendingModelImport } from "./src/models/SubscriptionProductVersionPending";
import { SubscriptionProductVersionRetirement as SubscriptionProductVersionRetirementModelImport } from "./src/models/SubscriptionProductVersionRetirement";
import { SubscriptionProductVersionRetirementCreate as SubscriptionProductVersionRetirementCreateModelImport } from "./src/models/SubscriptionProductVersionRetirementCreate";
import { SubscriptionProductVersionState as SubscriptionProductVersionStateModelImport } from "./src/models/SubscriptionProductVersionState";
import { SubscriptionState as SubscriptionStateModelImport } from "./src/models/SubscriptionState";
import { SubscriptionSuspension as SubscriptionSuspensionModelImport } from "./src/models/SubscriptionSuspension";
import { SubscriptionSuspensionAction as SubscriptionSuspensionActionModelImport } from "./src/models/SubscriptionSuspensionAction";
import { SubscriptionSuspensionCreate as SubscriptionSuspensionCreateModelImport } from "./src/models/SubscriptionSuspensionCreate";
import { SubscriptionSuspensionReason as SubscriptionSuspensionReasonModelImport } from "./src/models/SubscriptionSuspensionReason";
import { SubscriptionSuspensionState as SubscriptionSuspensionStateModelImport } from "./src/models/SubscriptionSuspensionState";
import { SubscriptionUpdate as SubscriptionUpdateModelImport } from "./src/models/SubscriptionUpdate";
import { SubscriptionUpdateRequest as SubscriptionUpdateRequestModelImport } from "./src/models/SubscriptionUpdateRequest";
import { SubscriptionVersion as SubscriptionVersionModelImport } from "./src/models/SubscriptionVersion";
import { SubscriptionVersionState as SubscriptionVersionStateModelImport } from "./src/models/SubscriptionVersionState";
import { Tax as TaxModelImport } from "./src/models/Tax";
import { TaxCalculation as TaxCalculationModelImport } from "./src/models/TaxCalculation";
import { TaxClass as TaxClassModelImport } from "./src/models/TaxClass";
import { TaxCreate as TaxCreateModelImport } from "./src/models/TaxCreate";
import { TenantDatabase as TenantDatabaseModelImport } from "./src/models/TenantDatabase";
import { TerminalReceiptFetchRequest as TerminalReceiptFetchRequestModelImport } from "./src/models/TerminalReceiptFetchRequest";
import { TerminalReceiptFormat as TerminalReceiptFormatModelImport } from "./src/models/TerminalReceiptFormat";
import { Token as TokenModelImport } from "./src/models/Token";
import { TokenVersion as TokenVersionModelImport } from "./src/models/TokenVersion";
import { TokenVersionState as TokenVersionStateModelImport } from "./src/models/TokenVersionState";
import { TokenVersionType as TokenVersionTypeModelImport } from "./src/models/TokenVersionType";
import { TokenizationMode as TokenizationModeModelImport } from "./src/models/TokenizationMode";
import { TokenizedCardData as TokenizedCardDataModelImport } from "./src/models/TokenizedCardData";
import { TokenizedCardDataCreate as TokenizedCardDataCreateModelImport } from "./src/models/TokenizedCardDataCreate";
import { Transaction as TransactionModelImport } from "./src/models/Transaction";
import { TransactionAwareEntity as TransactionAwareEntityModelImport } from "./src/models/TransactionAwareEntity";
import { TransactionComment as TransactionCommentModelImport } from "./src/models/TransactionComment";
import { TransactionCompletionBehavior as TransactionCompletionBehaviorModelImport } from "./src/models/TransactionCompletionBehavior";
import { TransactionCompletionMode as TransactionCompletionModeModelImport } from "./src/models/TransactionCompletionMode";
import { TransactionCompletionRequest as TransactionCompletionRequestModelImport } from "./src/models/TransactionCompletionRequest";
import { TransactionCompletionState as TransactionCompletionStateModelImport } from "./src/models/TransactionCompletionState";
import { TransactionEnvironmentSelectionStrategy as TransactionEnvironmentSelectionStrategyModelImport } from "./src/models/TransactionEnvironmentSelectionStrategy";
import { TransactionGroup as TransactionGroupModelImport } from "./src/models/TransactionGroup";
import { TransactionGroupState as TransactionGroupStateModelImport } from "./src/models/TransactionGroupState";
import { TransactionInvoiceComment as TransactionInvoiceCommentModelImport } from "./src/models/TransactionInvoiceComment";
import { TransactionInvoiceReplacement as TransactionInvoiceReplacementModelImport } from "./src/models/TransactionInvoiceReplacement";
import { TransactionInvoiceState as TransactionInvoiceStateModelImport } from "./src/models/TransactionInvoiceState";
import { TransactionLineItemVersionCreate as TransactionLineItemVersionCreateModelImport } from "./src/models/TransactionLineItemVersionCreate";
import { TransactionLineItemVersionState as TransactionLineItemVersionStateModelImport } from "./src/models/TransactionLineItemVersionState";
import { TransactionState as TransactionStateModelImport } from "./src/models/TransactionState";
import { TransactionUserInterfaceType as TransactionUserInterfaceTypeModelImport } from "./src/models/TransactionUserInterfaceType";
import { TransactionVoidMode as TransactionVoidModeModelImport } from "./src/models/TransactionVoidMode";
import { TransactionVoidState as TransactionVoidStateModelImport } from "./src/models/TransactionVoidState";
import { TwoFactorAuthenticationType as TwoFactorAuthenticationTypeModelImport } from "./src/models/TwoFactorAuthenticationType";
import { User as UserModelImport } from "./src/models/User";
import { UserAccountRole as UserAccountRoleModelImport } from "./src/models/UserAccountRole";
import { UserSpaceRole as UserSpaceRoleModelImport } from "./src/models/UserSpaceRole";
import { UserType as UserTypeModelImport } from "./src/models/UserType";
import { WalletType as WalletTypeModelImport } from "./src/models/WalletType";
import { WebAppConfirmationRequest as WebAppConfirmationRequestModelImport } from "./src/models/WebAppConfirmationRequest";
import { WebAppConfirmationResponse as WebAppConfirmationResponseModelImport } from "./src/models/WebAppConfirmationResponse";
import { WebhookEncryptionPublicKey as WebhookEncryptionPublicKeyModelImport } from "./src/models/WebhookEncryptionPublicKey";
import { WebhookIdentity as WebhookIdentityModelImport } from "./src/models/WebhookIdentity";
import { WebhookListener as WebhookListenerModelImport } from "./src/models/WebhookListener";
import { WebhookListenerEntity as WebhookListenerEntityModelImport } from "./src/models/WebhookListenerEntity";
import { WebhookUrl as WebhookUrlModelImport } from "./src/models/WebhookUrl";
import { AccountCreate as AccountCreateModelImport } from "./src/models/AccountCreate";
import { AccountUpdate as AccountUpdateModelImport } from "./src/models/AccountUpdate";
import { ApplicationUser as ApplicationUserModelImport } from "./src/models/ApplicationUser";
import { ApplicationUserCreate as ApplicationUserCreateModelImport } from "./src/models/ApplicationUserCreate";
import { ApplicationUserUpdate as ApplicationUserUpdateModelImport } from "./src/models/ApplicationUserUpdate";
import { AuthenticatedCardData as AuthenticatedCardDataModelImport } from "./src/models/AuthenticatedCardData";
import { Charge as ChargeModelImport } from "./src/models/Charge";
import { ChargeAttempt as ChargeAttemptModelImport } from "./src/models/ChargeAttempt";
import { ChargeBankTransaction as ChargeBankTransactionModelImport } from "./src/models/ChargeBankTransaction";
import { ChargeFlowLevel as ChargeFlowLevelModelImport } from "./src/models/ChargeFlowLevel";
import { ChargeFlowLevelPaymentLink as ChargeFlowLevelPaymentLinkModelImport } from "./src/models/ChargeFlowLevelPaymentLink";
import { ConnectorInvocation as ConnectorInvocationModelImport } from "./src/models/ConnectorInvocation";
import { CustomerActive as CustomerActiveModelImport } from "./src/models/CustomerActive";
import { CustomerAddressActive as CustomerAddressActiveModelImport } from "./src/models/CustomerAddressActive";
import { CustomerAddressCreate as CustomerAddressCreateModelImport } from "./src/models/CustomerAddressCreate";
import { CustomerCommentActive as CustomerCommentActiveModelImport } from "./src/models/CustomerCommentActive";
import { CustomerCommentCreate as CustomerCommentCreateModelImport } from "./src/models/CustomerCommentCreate";
import { CustomerCreate as CustomerCreateModelImport } from "./src/models/CustomerCreate";
import { DebtCollectionCaseCreate as DebtCollectionCaseCreateModelImport } from "./src/models/DebtCollectionCaseCreate";
import { DebtCollectionCaseUpdate as DebtCollectionCaseUpdateModelImport } from "./src/models/DebtCollectionCaseUpdate";
import { DeliveryIndication as DeliveryIndicationModelImport } from "./src/models/DeliveryIndication";
import { HumanUserCreate as HumanUserCreateModelImport } from "./src/models/HumanUserCreate";
import { HumanUserUpdate as HumanUserUpdateModelImport } from "./src/models/HumanUserUpdate";
import { InstallmentPaymentSlice as InstallmentPaymentSliceModelImport } from "./src/models/InstallmentPaymentSlice";
import { InvoiceReconciliationRecord as InvoiceReconciliationRecordModelImport } from "./src/models/InvoiceReconciliationRecord";
import { InvoiceReimbursementWithRefundReference as InvoiceReimbursementWithRefundReferenceModelImport } from "./src/models/InvoiceReimbursementWithRefundReference";
import { PaymentLinkActive as PaymentLinkActiveModelImport } from "./src/models/PaymentLinkActive";
import { PaymentLinkCreate as PaymentLinkCreateModelImport } from "./src/models/PaymentLinkCreate";
import { RefundBankTransaction as RefundBankTransactionModelImport } from "./src/models/RefundBankTransaction";
import { RefundCommentActive as RefundCommentActiveModelImport } from "./src/models/RefundCommentActive";
import { RefundCommentCreate as RefundCommentCreateModelImport } from "./src/models/RefundCommentCreate";
import { RefundRecoveryBankTransaction as RefundRecoveryBankTransactionModelImport } from "./src/models/RefundRecoveryBankTransaction";
import { ShopifyRecurringOrder as ShopifyRecurringOrderModelImport } from "./src/models/ShopifyRecurringOrder";
import { ShopifySubscriptionAddress as ShopifySubscriptionAddressModelImport } from "./src/models/ShopifySubscriptionAddress";
import { ShopifySubscriptionProductCreate as ShopifySubscriptionProductCreateModelImport } from "./src/models/ShopifySubscriptionProductCreate";
import { ShopifySubscriptionProductUpdate as ShopifySubscriptionProductUpdateModelImport } from "./src/models/ShopifySubscriptionProductUpdate";
import { ShopifyTransaction as ShopifyTransactionModelImport } from "./src/models/ShopifyTransaction";
import { SpaceCreate as SpaceCreateModelImport } from "./src/models/SpaceCreate";
import { SpaceUpdate as SpaceUpdateModelImport } from "./src/models/SpaceUpdate";
import { SubscriberActive as SubscriberActiveModelImport } from "./src/models/SubscriberActive";
import { SubscriberCreate as SubscriberCreateModelImport } from "./src/models/SubscriberCreate";
import { SubscriptionAffiliateCreate as SubscriptionAffiliateCreateModelImport } from "./src/models/SubscriptionAffiliateCreate";
import { SubscriptionAffiliateDeleted as SubscriptionAffiliateDeletedModelImport } from "./src/models/SubscriptionAffiliateDeleted";
import { SubscriptionAffiliateInactive as SubscriptionAffiliateInactiveModelImport } from "./src/models/SubscriptionAffiliateInactive";
import { SubscriptionMetricActive as SubscriptionMetricActiveModelImport } from "./src/models/SubscriptionMetricActive";
import { SubscriptionMetricCreate as SubscriptionMetricCreateModelImport } from "./src/models/SubscriptionMetricCreate";
import { SubscriptionPending as SubscriptionPendingModelImport } from "./src/models/SubscriptionPending";
import { SubscriptionProductActive as SubscriptionProductActiveModelImport } from "./src/models/SubscriptionProductActive";
import { SubscriptionProductCreate as SubscriptionProductCreateModelImport } from "./src/models/SubscriptionProductCreate";
import { SubscriptionSuspensionRunning as SubscriptionSuspensionRunningModelImport } from "./src/models/SubscriptionSuspensionRunning";
import { TokenCreate as TokenCreateModelImport } from "./src/models/TokenCreate";
import { TokenUpdate as TokenUpdateModelImport } from "./src/models/TokenUpdate";
import { TransactionCommentActive as TransactionCommentActiveModelImport } from "./src/models/TransactionCommentActive";
import { TransactionCommentCreate as TransactionCommentCreateModelImport } from "./src/models/TransactionCommentCreate";
import { TransactionCompletion as TransactionCompletionModelImport } from "./src/models/TransactionCompletion";
import { TransactionCreate as TransactionCreateModelImport } from "./src/models/TransactionCreate";
import { TransactionInvoice as TransactionInvoiceModelImport } from "./src/models/TransactionInvoice";
import { TransactionInvoiceCommentActive as TransactionInvoiceCommentActiveModelImport } from "./src/models/TransactionInvoiceCommentActive";
import { TransactionInvoiceCommentCreate as TransactionInvoiceCommentCreateModelImport } from "./src/models/TransactionInvoiceCommentCreate";
import { TransactionLineItemVersion as TransactionLineItemVersionModelImport } from "./src/models/TransactionLineItemVersion";
import { TransactionPending as TransactionPendingModelImport } from "./src/models/TransactionPending";
import { TransactionVoid as TransactionVoidModelImport } from "./src/models/TransactionVoid";
import { WebhookListenerCreate as WebhookListenerCreateModelImport } from "./src/models/WebhookListenerCreate";
import { WebhookListenerUpdate as WebhookListenerUpdateModelImport } from "./src/models/WebhookListenerUpdate";
import { WebhookUrlCreate as WebhookUrlCreateModelImport } from "./src/models/WebhookUrlCreate";
import { WebhookUrlUpdate as WebhookUrlUpdateModelImport } from "./src/models/WebhookUrlUpdate";
import { ApplicationUserCreateWithMacKey as ApplicationUserCreateWithMacKeyModelImport } from "./src/models/ApplicationUserCreateWithMacKey";
import { SubscriptionAffiliateDeleting as SubscriptionAffiliateDeletingModelImport } from "./src/models/SubscriptionAffiliateDeleting";
import { AccountService as AccountServiceApiImport } from "./src/api/AccountService";
import { AnalyticsQueryService as AnalyticsQueryServiceApiImport } from "./src/api/AnalyticsQueryService";
import { ApplicationUserService as ApplicationUserServiceApiImport } from "./src/api/ApplicationUserService";
import { BankAccountService as BankAccountServiceApiImport } from "./src/api/BankAccountService";
import { BankTransactionService as BankTransactionServiceApiImport } from "./src/api/BankTransactionService";
import { CardProcessingService as CardProcessingServiceApiImport } from "./src/api/CardProcessingService";
import { ChargeAttemptService as ChargeAttemptServiceApiImport } from "./src/api/ChargeAttemptService";
import { ChargeBankTransactionService as ChargeBankTransactionServiceApiImport } from "./src/api/ChargeBankTransactionService";
import { ChargeFlowLevelPaymentLinkService as ChargeFlowLevelPaymentLinkServiceApiImport } from "./src/api/ChargeFlowLevelPaymentLinkService";
import { ChargeFlowLevelService as ChargeFlowLevelServiceApiImport } from "./src/api/ChargeFlowLevelService";
import { ChargeFlowService as ChargeFlowServiceApiImport } from "./src/api/ChargeFlowService";
import { ConditionTypeService as ConditionTypeServiceApiImport } from "./src/api/ConditionTypeService";
import { CountryService as CountryServiceApiImport } from "./src/api/CountryService";
import { CountryStateService as CountryStateServiceApiImport } from "./src/api/CountryStateService";
import { CurrencyBankAccountService as CurrencyBankAccountServiceApiImport } from "./src/api/CurrencyBankAccountService";
import { CurrencyService as CurrencyServiceApiImport } from "./src/api/CurrencyService";
import { CustomerAddressService as CustomerAddressServiceApiImport } from "./src/api/CustomerAddressService";
import { CustomerCommentService as CustomerCommentServiceApiImport } from "./src/api/CustomerCommentService";
import { CustomerService as CustomerServiceApiImport } from "./src/api/CustomerService";
import { DebtCollectionCaseService as DebtCollectionCaseServiceApiImport } from "./src/api/DebtCollectionCaseService";
import { DebtCollectorConfigurationService as DebtCollectorConfigurationServiceApiImport } from "./src/api/DebtCollectorConfigurationService";
import { DebtCollectorService as DebtCollectorServiceApiImport } from "./src/api/DebtCollectorService";
import { DeliveryIndicationService as DeliveryIndicationServiceApiImport } from "./src/api/DeliveryIndicationService";
import { DocumentTemplateService as DocumentTemplateServiceApiImport } from "./src/api/DocumentTemplateService";
import { DocumentTemplateTypeService as DocumentTemplateTypeServiceApiImport } from "./src/api/DocumentTemplateTypeService";
import { ExternalTransferBankTransactionService as ExternalTransferBankTransactionServiceApiImport } from "./src/api/ExternalTransferBankTransactionService";
import { HumanUserService as HumanUserServiceApiImport } from "./src/api/HumanUserService";
import { InstallmentPaymentService as InstallmentPaymentServiceApiImport } from "./src/api/InstallmentPaymentService";
import { InstallmentPaymentSliceService as InstallmentPaymentSliceServiceApiImport } from "./src/api/InstallmentPaymentSliceService";
import { InstallmentPlanCalculationService as InstallmentPlanCalculationServiceApiImport } from "./src/api/InstallmentPlanCalculationService";
import { InstallmentPlanConfigurationService as InstallmentPlanConfigurationServiceApiImport } from "./src/api/InstallmentPlanConfigurationService";
import { InstallmentPlanSliceConfigurationService as InstallmentPlanSliceConfigurationServiceApiImport } from "./src/api/InstallmentPlanSliceConfigurationService";
import { InternalTransferBankTransactionService as InternalTransferBankTransactionServiceApiImport } from "./src/api/InternalTransferBankTransactionService";
import { InvoiceReconciliationRecordInvoiceLinkService as InvoiceReconciliationRecordInvoiceLinkServiceApiImport } from "./src/api/InvoiceReconciliationRecordInvoiceLinkService";
import { InvoiceReconciliationRecordService as InvoiceReconciliationRecordServiceApiImport } from "./src/api/InvoiceReconciliationRecordService";
import { InvoiceReimbursementService as InvoiceReimbursementServiceApiImport } from "./src/api/InvoiceReimbursementService";
import { LabelDescriptionGroupService as LabelDescriptionGroupServiceApiImport } from "./src/api/LabelDescriptionGroupService";
import { LabelDescriptionService as LabelDescriptionServiceApiImport } from "./src/api/LabelDescriptionService";
import { LanguageService as LanguageServiceApiImport } from "./src/api/LanguageService";
import { LegalOrganizationFormService as LegalOrganizationFormServiceApiImport } from "./src/api/LegalOrganizationFormService";
import { ManualTaskService as ManualTaskServiceApiImport } from "./src/api/ManualTaskService";
import { MerticUsageService as MerticUsageServiceApiImport } from "./src/api/MerticUsageService";
import { PaymentConnectorConfigurationService as PaymentConnectorConfigurationServiceApiImport } from "./src/api/PaymentConnectorConfigurationService";
import { PaymentConnectorService as PaymentConnectorServiceApiImport } from "./src/api/PaymentConnectorService";
import { PaymentLinkService as PaymentLinkServiceApiImport } from "./src/api/PaymentLinkService";
import { PaymentMethodBrandService as PaymentMethodBrandServiceApiImport } from "./src/api/PaymentMethodBrandService";
import { PaymentMethodConfigurationService as PaymentMethodConfigurationServiceApiImport } from "./src/api/PaymentMethodConfigurationService";
import { PaymentMethodService as PaymentMethodServiceApiImport } from "./src/api/PaymentMethodService";
import { PaymentProcessorConfigurationService as PaymentProcessorConfigurationServiceApiImport } from "./src/api/PaymentProcessorConfigurationService";
import { PaymentProcessorService as PaymentProcessorServiceApiImport } from "./src/api/PaymentProcessorService";
import { PaymentTerminalService as PaymentTerminalServiceApiImport } from "./src/api/PaymentTerminalService";
import { PaymentTerminalTillService as PaymentTerminalTillServiceApiImport } from "./src/api/PaymentTerminalTillService";
import { PaymentTerminalTransactionSummaryService as PaymentTerminalTransactionSummaryServiceApiImport } from "./src/api/PaymentTerminalTransactionSummaryService";
import { PaymentWebAppService as PaymentWebAppServiceApiImport } from "./src/api/PaymentWebAppService";
import { PermissionService as PermissionServiceApiImport } from "./src/api/PermissionService";
import { RefundBankTransactionService as RefundBankTransactionServiceApiImport } from "./src/api/RefundBankTransactionService";
import { RefundCommentService as RefundCommentServiceApiImport } from "./src/api/RefundCommentService";
import { RefundRecoveryBankTransactionService as RefundRecoveryBankTransactionServiceApiImport } from "./src/api/RefundRecoveryBankTransactionService";
import { RefundService as RefundServiceApiImport } from "./src/api/RefundService";
import { ShopifyRecurringOrderService as ShopifyRecurringOrderServiceApiImport } from "./src/api/ShopifyRecurringOrderService";
import { ShopifySubscriberService as ShopifySubscriberServiceApiImport } from "./src/api/ShopifySubscriberService";
import { ShopifySubscriptionProductService as ShopifySubscriptionProductServiceApiImport } from "./src/api/ShopifySubscriptionProductService";
import { ShopifySubscriptionService as ShopifySubscriptionServiceApiImport } from "./src/api/ShopifySubscriptionService";
import { ShopifySubscriptionSuspensionService as ShopifySubscriptionSuspensionServiceApiImport } from "./src/api/ShopifySubscriptionSuspensionService";
import { ShopifySubscriptionVersionService as ShopifySubscriptionVersionServiceApiImport } from "./src/api/ShopifySubscriptionVersionService";
import { ShopifyTransactionService as ShopifyTransactionServiceApiImport } from "./src/api/ShopifyTransactionService";
import { SpaceService as SpaceServiceApiImport } from "./src/api/SpaceService";
import { StaticValueService as StaticValueServiceApiImport } from "./src/api/StaticValueService";
import { SubscriberService as SubscriberServiceApiImport } from "./src/api/SubscriberService";
import { SubscriptionAffiliateService as SubscriptionAffiliateServiceApiImport } from "./src/api/SubscriptionAffiliateService";
import { SubscriptionChargeService as SubscriptionChargeServiceApiImport } from "./src/api/SubscriptionChargeService";
import { SubscriptionLedgerEntryService as SubscriptionLedgerEntryServiceApiImport } from "./src/api/SubscriptionLedgerEntryService";
import { SubscriptionMetricService as SubscriptionMetricServiceApiImport } from "./src/api/SubscriptionMetricService";
import { SubscriptionMetricUsageService as SubscriptionMetricUsageServiceApiImport } from "./src/api/SubscriptionMetricUsageService";
import { SubscriptionPeriodBillService as SubscriptionPeriodBillServiceApiImport } from "./src/api/SubscriptionPeriodBillService";
import { SubscriptionProductComponentGroupService as SubscriptionProductComponentGroupServiceApiImport } from "./src/api/SubscriptionProductComponentGroupService";
import { SubscriptionProductComponentService as SubscriptionProductComponentServiceApiImport } from "./src/api/SubscriptionProductComponentService";
import { SubscriptionProductFeeTierService as SubscriptionProductFeeTierServiceApiImport } from "./src/api/SubscriptionProductFeeTierService";
import { SubscriptionProductMeteredFeeService as SubscriptionProductMeteredFeeServiceApiImport } from "./src/api/SubscriptionProductMeteredFeeService";
import { SubscriptionProductPeriodFeeService as SubscriptionProductPeriodFeeServiceApiImport } from "./src/api/SubscriptionProductPeriodFeeService";
import { SubscriptionProductRetirementService as SubscriptionProductRetirementServiceApiImport } from "./src/api/SubscriptionProductRetirementService";
import { SubscriptionProductService as SubscriptionProductServiceApiImport } from "./src/api/SubscriptionProductService";
import { SubscriptionProductSetupFeeService as SubscriptionProductSetupFeeServiceApiImport } from "./src/api/SubscriptionProductSetupFeeService";
import { SubscriptionProductVersionRetirementService as SubscriptionProductVersionRetirementServiceApiImport } from "./src/api/SubscriptionProductVersionRetirementService";
import { SubscriptionProductVersionService as SubscriptionProductVersionServiceApiImport } from "./src/api/SubscriptionProductVersionService";
import { SubscriptionService as SubscriptionServiceApiImport } from "./src/api/SubscriptionService";
import { SubscriptionSuspensionService as SubscriptionSuspensionServiceApiImport } from "./src/api/SubscriptionSuspensionService";
import { SubscriptionVersionService as SubscriptionVersionServiceApiImport } from "./src/api/SubscriptionVersionService";
import { TokenService as TokenServiceApiImport } from "./src/api/TokenService";
import { TokenVersionService as TokenVersionServiceApiImport } from "./src/api/TokenVersionService";
import { TransactionCommentService as TransactionCommentServiceApiImport } from "./src/api/TransactionCommentService";
import { TransactionCompletionService as TransactionCompletionServiceApiImport } from "./src/api/TransactionCompletionService";
import { TransactionIframeService as TransactionIframeServiceApiImport } from "./src/api/TransactionIframeService";
import { TransactionInvoiceCommentService as TransactionInvoiceCommentServiceApiImport } from "./src/api/TransactionInvoiceCommentService";
import { TransactionInvoiceService as TransactionInvoiceServiceApiImport } from "./src/api/TransactionInvoiceService";
import { TransactionLightboxService as TransactionLightboxServiceApiImport } from "./src/api/TransactionLightboxService";
import { TransactionLineItemVersionService as TransactionLineItemVersionServiceApiImport } from "./src/api/TransactionLineItemVersionService";
import { TransactionMobileSdkService as TransactionMobileSdkServiceApiImport } from "./src/api/TransactionMobileSdkService";
import { TransactionPaymentPageService as TransactionPaymentPageServiceApiImport } from "./src/api/TransactionPaymentPageService";
import { TransactionService as TransactionServiceApiImport } from "./src/api/TransactionService";
import { TransactionTerminalService as TransactionTerminalServiceApiImport } from "./src/api/TransactionTerminalService";
import { TransactionVoidService as TransactionVoidServiceApiImport } from "./src/api/TransactionVoidService";
import { UserAccountRoleService as UserAccountRoleServiceApiImport } from "./src/api/UserAccountRoleService";
import { UserSpaceRoleService as UserSpaceRoleServiceApiImport } from "./src/api/UserSpaceRoleService";
import { WebAppService as WebAppServiceApiImport } from "./src/api/WebAppService";
import { WebhookEncryptionService as WebhookEncryptionServiceApiImport } from "./src/api/WebhookEncryptionService";
import { WebhookListenerService as WebhookListenerServiceApiImport } from "./src/api/WebhookListenerService";
import { WebhookUrlService as WebhookUrlServiceApiImport } from "./src/api/WebhookUrlService";
export namespace Wallee {
export namespace model {
export type AbstractAccountUpdate = AbstractAccountUpdateModelImport;
export const AbstractAccountUpdate = AbstractAccountUpdateModelImport;
export type AbstractApplicationUserUpdate = AbstractApplicationUserUpdateModelImport;
export const AbstractApplicationUserUpdate = AbstractApplicationUserUpdateModelImport;
export type AbstractCustomerActive = AbstractCustomerActiveModelImport;
export const AbstractCustomerActive = AbstractCustomerActiveModelImport;
export type AbstractCustomerAddressActive = AbstractCustomerAddressActiveModelImport;
export const AbstractCustomerAddressActive = AbstractCustomerAddressActiveModelImport;
export type AbstractCustomerCommentActive = AbstractCustomerCommentActiveModelImport;
export const AbstractCustomerCommentActive = AbstractCustomerCommentActiveModelImport;
export type AbstractDebtCollectionCaseUpdate = AbstractDebtCollectionCaseUpdateModelImport;
export const AbstractDebtCollectionCaseUpdate = AbstractDebtCollectionCaseUpdateModelImport;
export type AbstractHumanUserUpdate = AbstractHumanUserUpdateModelImport;
export const AbstractHumanUserUpdate = AbstractHumanUserUpdateModelImport;
export type AbstractPaymentLinkUpdate = AbstractPaymentLinkUpdateModelImport;
export const AbstractPaymentLinkUpdate = AbstractPaymentLinkUpdateModelImport;
export type AbstractRefundCommentActive = AbstractRefundCommentActiveModelImport;
export const AbstractRefundCommentActive = AbstractRefundCommentActiveModelImport;
export type AbstractShopifySubscriptionProductUpdate = AbstractShopifySubscriptionProductUpdateModelImport;
export const AbstractShopifySubscriptionProductUpdate = AbstractShopifySubscriptionProductUpdateModelImport;
export type AbstractSpaceUpdate = AbstractSpaceUpdateModelImport;
export const AbstractSpaceUpdate = AbstractSpaceUpdateModelImport;
export type AbstractSubscriberUpdate = AbstractSubscriberUpdateModelImport;
export const AbstractSubscriberUpdate = AbstractSubscriberUpdateModelImport;
export type AbstractSubscriptionAffiliateUpdate = AbstractSubscriptionAffiliateUpdateModelImport;
export const AbstractSubscriptionAffiliateUpdate = AbstractSubscriptionAffiliateUpdateModelImport;
export type AbstractSubscriptionMetricUpdate = AbstractSubscriptionMetricUpdateModelImport;
export const AbstractSubscriptionMetricUpdate = AbstractSubscriptionMetricUpdateModelImport;
export type AbstractSubscriptionProductActive = AbstractSubscriptionProductActiveModelImport;
export const AbstractSubscriptionProductActive = AbstractSubscriptionProductActiveModelImport;
export type AbstractTokenUpdate = AbstractTokenUpdateModelImport;
export const AbstractTokenUpdate = AbstractTokenUpdateModelImport;
export type AbstractTransactionCommentActive = AbstractTransactionCommentActiveModelImport;
export const AbstractTransactionCommentActive = AbstractTransactionCommentActiveModelImport;
export type AbstractTransactionInvoiceCommentActive = AbstractTransactionInvoiceCommentActiveModelImport;
export const AbstractTransactionInvoiceCommentActive = AbstractTransactionInvoiceCommentActiveModelImport;
export type AbstractTransactionPending = AbstractTransactionPendingModelImport;
export const AbstractTransactionPending = AbstractTransactionPendingModelImport;
export type AbstractWebhookListenerUpdate = AbstractWebhookListenerUpdateModelImport;
export const AbstractWebhookListenerUpdate = AbstractWebhookListenerUpdateModelImport;
export type AbstractWebhookUrlUpdate = AbstractWebhookUrlUpdateModelImport;
export const AbstractWebhookUrlUpdate = AbstractWebhookUrlUpdateModelImport;
export type Account = AccountModelImport;
export const Account = AccountModelImport;
export type AccountState = AccountStateModelImport;
export const AccountState = AccountStateModelImport;
export type AccountType = AccountTypeModelImport;
export const AccountType = AccountTypeModelImport;
export type Address = AddressModelImport;
export const Address = AddressModelImport;
export type AddressCreate = AddressCreateModelImport;
export const AddressCreate = AddressCreateModelImport;
export type AnalyticsQuery = AnalyticsQueryModelImport;
export const AnalyticsQuery = AnalyticsQueryModelImport;
export type AnalyticsQueryExecution = AnalyticsQueryExecutionModelImport;
export const AnalyticsQueryExecution = AnalyticsQueryExecutionModelImport;
export type AnalyticsQueryExecutionState = AnalyticsQueryExecutionStateModelImport;
export const AnalyticsQueryExecutionState = AnalyticsQueryExecutionStateModelImport;
export type AnalyticsQueryResultBatch = AnalyticsQueryResultBatchModelImport;
export const AnalyticsQueryResultBatch = AnalyticsQueryResultBatchModelImport;
export type AnalyticsSchemaColumn = AnalyticsSchemaColumnModelImport;
export const AnalyticsSchemaColumn = AnalyticsSchemaColumnModelImport;
export type AnalyticsSchemaTable = AnalyticsSchemaTableModelImport;
export const AnalyticsSchemaTable = AnalyticsSchemaTableModelImport;
export type AuthenticatedCardDataCreate = AuthenticatedCardDataCreateModelImport;
export const AuthenticatedCardDataCreate = AuthenticatedCardDataCreateModelImport;
export type BankAccount = BankAccountModelImport;
export const BankAccount = BankAccountModelImport;
export type BankAccountEnvironment = BankAccountEnvironmentModelImport;
export const BankAccountEnvironment = BankAccountEnvironmentModelImport;
export type BankAccountState = BankAccountStateModelImport;
export const BankAccountState = BankAccountStateModelImport;
export type BankAccountType = BankAccountTypeModelImport;
export const BankAccountType = BankAccountTypeModelImport;
export type BankTransaction = BankTransactionModelImport;
export const BankTransaction = BankTransactionModelImport;
export type BankTransactionFlowDirection = BankTransactionFlowDirectionModelImport;
export const BankTransactionFlowDirection = BankTransactionFlowDirectionModelImport;
export type BankTransactionSource = BankTransactionSourceModelImport;
export const BankTransactionSource = BankTransactionSourceModelImport;
export type BankTransactionState = BankTransactionStateModelImport;
export const BankTransactionState = BankTransactionStateModelImport;
export type BankTransactionType = BankTransactionTypeModelImport;
export const BankTransactionType = BankTransactionTypeModelImport;
export type CardAuthenticationResponse = CardAuthenticationResponseModelImport;
export const CardAuthenticationResponse = CardAuthenticationResponseModelImport;
export type CardAuthenticationVersion = CardAuthenticationVersionModelImport;
export const CardAuthenticationVersion = CardAuthenticationVersionModelImport;
export type CardCryptogram = CardCryptogramModelImport;
export const CardCryptogram = CardCryptogramModelImport;
export type CardCryptogramCreate = CardCryptogramCreateModelImport;
export const CardCryptogramCreate = CardCryptogramCreateModelImport;
export type CardCryptogramType = CardCryptogramTypeModelImport;
export const CardCryptogramType = CardCryptogramTypeModelImport;
export type CardholderAuthentication = CardholderAuthenticationModelImport;
export const CardholderAuthentication = CardholderAuthenticationModelImport;
export type CardholderAuthenticationCreate = CardholderAuthenticationCreateModelImport;
export const CardholderAuthenticationCreate = CardholderAuthenticationCreateModelImport;
export type ChargeAttemptEnvironment = ChargeAttemptEnvironmentModelImport;
export const ChargeAttemptEnvironment = ChargeAttemptEnvironmentModelImport;
export type ChargeAttemptState = ChargeAttemptStateModelImport;
export const ChargeAttemptState = ChargeAttemptStateModelImport;
export type ChargeFlow = ChargeFlowModelImport;
export const ChargeFlow = ChargeFlowModelImport;
export type ChargeFlowLevelConfiguration = ChargeFlowLevelConfigurationModelImport;
export const ChargeFlowLevelConfiguration = ChargeFlowLevelConfigurationModelImport;
export type ChargeFlowLevelConfigurationType = ChargeFlowLevelConfigurationTypeModelImport;
export const ChargeFlowLevelConfigurationType = ChargeFlowLevelConfigurationTypeModelImport;
export type ChargeFlowLevelState = ChargeFlowLevelStateModelImport;
export const ChargeFlowLevelState = ChargeFlowLevelStateModelImport;
export type ChargeState = ChargeStateModelImport;
export const ChargeState = ChargeStateModelImport;
export type ChargeType = ChargeTypeModelImport;
export const ChargeType = ChargeTypeModelImport;
export type ClientError = ClientErrorModelImport;
export const ClientError = ClientErrorModelImport;
export type ClientErrorType = ClientErrorTypeModelImport;
export const ClientErrorType = ClientErrorTypeModelImport;
export type CompletionLineItem = CompletionLineItemModelImport;
export const CompletionLineItem = CompletionLineItemModelImport;
export type CompletionLineItemCreate = CompletionLineItemCreateModelImport;
export const CompletionLineItemCreate = CompletionLineItemCreateModelImport;
export type Condition = ConditionModelImport;
export const Condition = ConditionModelImport;
export type ConditionType = ConditionTypeModelImport;
export const ConditionType = ConditionTypeModelImport;
export type ConnectorInvocationStage = ConnectorInvocationStageModelImport;
export const ConnectorInvocationStage = ConnectorInvocationStageModelImport;
export type CreationEntityState = CreationEntityStateModelImport;
export const CreationEntityState = CreationEntityStateModelImport;
export type CriteriaOperator = CriteriaOperatorModelImport;
export const CriteriaOperator = CriteriaOperatorModelImport;
export type CurrencyBankAccount = CurrencyBankAccountModelImport;
export const CurrencyBankAccount = CurrencyBankAccountModelImport;
export type Customer = CustomerModelImport;
export const Customer = CustomerModelImport;
export type CustomerAddress = CustomerAddressModelImport;
export const CustomerAddress = CustomerAddressModelImport;
export type CustomerAddressType = CustomerAddressTypeModelImport;
export const CustomerAddressType = CustomerAddressTypeModelImport;
export type CustomerComment = CustomerCommentModelImport;
export const CustomerComment = CustomerCommentModelImport;
export type CustomerPostalAddress = CustomerPostalAddressModelImport;
export const CustomerPostalAddress = CustomerPostalAddressModelImport;
export type CustomerPostalAddressCreate = CustomerPostalAddressCreateModelImport;
export const CustomerPostalAddressCreate = CustomerPostalAddressCreateModelImport;
export type CustomersPresence = CustomersPresenceModelImport;
export const CustomersPresence = CustomersPresenceModelImport;
export type DataCollectionType = DataCollectionTypeModelImport;
export const DataCollectionType = DataCollectionTypeModelImport;
export type DebtCollectionCase = DebtCollectionCaseModelImport;
export const DebtCollectionCase = DebtCollectionCaseModelImport;
export type DebtCollectionCaseDocument = DebtCollectionCaseDocumentModelImport;
export const DebtCollectionCaseDocument = DebtCollectionCaseDocumentModelImport;
export type DebtCollectionCaseSource = DebtCollectionCaseSourceModelImport;
export const DebtCollectionCaseSource = DebtCollectionCaseSourceModelImport;
export type DebtCollectionCaseState = DebtCollectionCaseStateModelImport;
export const DebtCollectionCaseState = DebtCollectionCaseStateModelImport;
export type DebtCollectionEnvironment = DebtCollectionEnvironmentModelImport;
export const DebtCollectionEnvironment = DebtCollectionEnvironmentModelImport;
export type DebtCollectionReceipt = DebtCollectionReceiptModelImport;
export const DebtCollectionReceipt = DebtCollectionReceiptModelImport;
export type DebtCollectionReceiptSource = DebtCollectionReceiptSourceModelImport;
export const DebtCollectionReceiptSource = DebtCollectionReceiptSourceModelImport;
export type DebtCollector = DebtCollectorModelImport;
export const DebtCollector = DebtCollectorModelImport;
export type DebtCollectorCondition = DebtCollectorConditionModelImport;
export const DebtCollectorCondition = DebtCollectorConditionModelImport;
export type DebtCollectorConditionType = DebtCollectorConditionTypeModelImport;
export const DebtCollectorConditionType = DebtCollectorConditionTypeModelImport;
export type DebtCollectorConfiguration = DebtCollectorConfigurationModelImport;
export const DebtCollectorConfiguration = DebtCollectorConfigurationModelImport;
export type DeliveryIndicationDecisionReason = DeliveryIndicationDecisionReasonModelImport;
export const DeliveryIndicationDecisionReason = DeliveryIndicationDecisionReasonModelImport;
export type DeliveryIndicationState = DeliveryIndicationStateModelImport;
export const DeliveryIndicationState = DeliveryIndicationStateModelImport;
export type DocumentTemplate = DocumentTemplateModelImport;
export const DocumentTemplate = DocumentTemplateModelImport;
export type DocumentTemplateType = DocumentTemplateTypeModelImport;
export const DocumentTemplateType = DocumentTemplateTypeModelImport;
export type DocumentTemplateTypeGroup = DocumentTemplateTypeGroupModelImport;
export const DocumentTemplateTypeGroup = DocumentTemplateTypeGroupModelImport;
export type EntityExportRequest = EntityExportRequestModelImport;
export const EntityExportRequest = EntityExportRequestModelImport;
export type EntityQuery = EntityQueryModelImport;
export const EntityQuery = EntityQueryModelImport;
export type EntityQueryFilter = EntityQueryFilterModelImport;
export const EntityQueryFilter = EntityQueryFilterModelImport;
export type EntityQueryFilterType = EntityQueryFilterTypeModelImport;
export const EntityQueryFilterType = EntityQueryFilterTypeModelImport;
export type EntityQueryOrderBy = EntityQueryOrderByModelImport;
export const EntityQueryOrderBy = EntityQueryOrderByModelImport;
export type EntityQueryOrderByType = EntityQueryOrderByTypeModelImport;
export const EntityQueryOrderByType = EntityQueryOrderByTypeModelImport;
export type Environment = EnvironmentModelImport;
export const Environment = EnvironmentModelImport;
export type ExternalTransferBankTransaction = ExternalTransferBankTransactionModelImport;
export const ExternalTransferBankTransaction = ExternalTransferBankTransactionModelImport;
export type FailureCategory = FailureCategoryModelImport;
export const FailureCategory = FailureCategoryModelImport;
export type FailureReason = FailureReasonModelImport;
export const FailureReason = FailureReasonModelImport;
export type Feature = FeatureModelImport;
export const Feature = FeatureModelImport;
export type FeatureCategory = FeatureCategoryModelImport;
export const FeatureCategory = FeatureCategoryModelImport;
export type Gender = GenderModelImport;
export const Gender = GenderModelImport;
export type HumanUser = HumanUserModelImport;
export const HumanUser = HumanUserModelImport;
export type InstallmentCalculatedPlan = InstallmentCalculatedPlanModelImport;
export const InstallmentCalculatedPlan = InstallmentCalculatedPlanModelImport;
export type InstallmentCalculatedSlice = InstallmentCalculatedSliceModelImport;
export const InstallmentCalculatedSlice = InstallmentCalculatedSliceModelImport;
export type InstallmentPayment = InstallmentPaymentModelImport;
export const InstallmentPayment = InstallmentPaymentModelImport;
export type InstallmentPaymentSliceState = InstallmentPaymentSliceStateModelImport;
export const InstallmentPaymentSliceState = InstallmentPaymentSliceStateModelImport;
export type InstallmentPaymentState = InstallmentPaymentStateModelImport;
export const InstallmentPaymentState = InstallmentPaymentStateModelImport;
export type InstallmentPlanConfiguration = InstallmentPlanConfigurationModelImport;
export const InstallmentPlanConfiguration = InstallmentPlanConfigurationModelImport;
export type InstallmentPlanSliceConfiguration = InstallmentPlanSliceConfigurationModelImport;
export const InstallmentPlanSliceConfiguration = InstallmentPlanSliceConfigurationModelImport;
export type InternalTransferBankTransaction = InternalTransferBankTransactionModelImport;
export const InternalTransferBankTransaction = InternalTransferBankTransactionModelImport;
export type InvoiceReconciliationRecordInvoiceLink = InvoiceReconciliationRecordInvoiceLinkModelImport;
export const InvoiceReconciliationRecordInvoiceLink = InvoiceReconciliationRecordInvoiceLinkModelImport;
export type InvoiceReconciliationRecordRejectionStatus = InvoiceReconciliationRecordRejectionStatusModelImport;
export const InvoiceReconciliationRecordRejectionStatus = InvoiceReconciliationRecordRejectionStatusModelImport;
export type InvoiceReconciliationRecordState = InvoiceReconciliationRecordStateModelImport;
export const InvoiceReconciliationRecordState = InvoiceReconciliationRecordStateModelImport;
export type InvoiceReconciliationRecordType = InvoiceReconciliationRecordTypeModelImport;
export const InvoiceReconciliationRecordType = InvoiceReconciliationRecordTypeModelImport;
export type InvoiceReimbursement = InvoiceReimbursementModelImport;
export const InvoiceReimbursement = InvoiceReimbursementModelImport;
export type InvoiceReimbursementState = InvoiceReimbursementStateModelImport;
export const InvoiceReimbursementState = InvoiceReimbursementStateModelImport;
export type Label = LabelModelImport;
export const Label = LabelModelImport;
export type LabelDescriptor = LabelDescriptorModelImport;
export const LabelDescriptor = LabelDescriptorModelImport;
export type LabelDescriptorCategory = LabelDescriptorCategoryModelImport;
export const LabelDescriptorCategory = LabelDescriptorCategoryModelImport;
export type LabelDescriptorGroup = LabelDescriptorGroupModelImport;
export const LabelDescriptorGroup = LabelDescriptorGroupModelImport;
export type LabelDescriptorType = LabelDescriptorTypeModelImport;
export const LabelDescriptorType = LabelDescriptorTypeModelImport;
export type LegalOrganizationForm = LegalOrganizationFormModelImport;
export const LegalOrganizationForm = LegalOrganizationFormModelImport;
export type LineItem = LineItemModelImport;
export const LineItem = LineItemModelImport;
export type LineItemAttribute = LineItemAttributeModelImport;
export const LineItemAttribute = LineItemAttributeModelImport;
export type LineItemAttributeCreate = LineItemAttributeCreateModelImport;
export const LineItemAttributeCreate = LineItemAttributeCreateModelImport;
export type LineItemCreate = LineItemCreateModelImport;
export const LineItemCreate = LineItemCreateModelImport;
export type LineItemReduction = LineItemReductionModelImport;
export const LineItemReduction = LineItemReductionModelImport;
export type LineItemReductionCreate = LineItemReductionCreateModelImport;
export const LineItemReductionCreate = LineItemReductionCreateModelImport;
export type LineItemType = LineItemTypeModelImport;
export const LineItemType = LineItemTypeModelImport;
export type LocalizedString = LocalizedStringModelImport;
export const LocalizedString = LocalizedStringModelImport;
export type ManualTask = ManualTaskModelImport;
export const ManualTask = ManualTaskModelImport;
export type ManualTaskAction = ManualTaskActionModelImport;
export const ManualTaskAction = ManualTaskActionModelImport;
export type ManualTaskActionStyle = ManualTaskActionStyleModelImport;
export const ManualTaskActionStyle = ManualTaskActionStyleModelImport;
export type ManualTaskState = ManualTaskStateModelImport;
export const ManualTaskState = ManualTaskStateModelImport;
export type ManualTaskType = ManualTaskTypeModelImport;
export const ManualTaskType = ManualTaskTypeModelImport;
export type MetricUsage = MetricUsageModelImport;
export const MetricUsage = MetricUsageModelImport;
export type OneClickPaymentMode = OneClickPaymentModeModelImport;
export const OneClickPaymentMode = OneClickPaymentModeModelImport;
export type PaymentAdjustment = PaymentAdjustmentModelImport;
export const PaymentAdjustment = PaymentAdjustmentModelImport;
export type PaymentAdjustmentType = PaymentAdjustmentTypeModelImport;
export const PaymentAdjustmentType = PaymentAdjustmentTypeModelImport;
export type PaymentAppChargeAttemptTargetState = PaymentAppChargeAttemptTargetStateModelImport;
export const PaymentAppChargeAttemptTargetState = PaymentAppChargeAttemptTargetStateModelImport;
export type PaymentAppChargeAttemptUpdateRequest = PaymentAppChargeAttemptUpdateRequestModelImport;
export const PaymentAppChargeAttemptUpdateRequest = PaymentAppChargeAttemptUpdateRequestModelImport;
export type PaymentAppCompletionConfiguration = PaymentAppCompletionConfigurationModelImport;
export const PaymentAppCompletionConfiguration = PaymentAppCompletionConfigurationModelImport;
export type PaymentAppCompletionConfigurationCreate = PaymentAppCompletionConfigurationCreateModelImport;
export const PaymentAppCompletionConfigurationCreate = PaymentAppCompletionConfigurationCreateModelImport;
export type PaymentAppCompletionTargetState = PaymentAppCompletionTargetStateModelImport;
export const PaymentAppCompletionTargetState = PaymentAppCompletionTargetStateModelImport;
export type PaymentAppCompletionUpdateRequest = PaymentAppCompletionUpdateRequestModelImport;
export const PaymentAppCompletionUpdateRequest = PaymentAppCompletionUpdateRequestModelImport;
export type PaymentAppConnector = PaymentAppConnectorModelImport;
export const PaymentAppConnector = PaymentAppConnectorModelImport;
export type PaymentAppConnectorCreationRequest = PaymentAppConnectorCreationRequestModelImport;
export const PaymentAppConnectorCreationRequest = PaymentAppConnectorCreationRequestModelImport;
export type PaymentAppConnectorState = PaymentAppConnectorStateModelImport;
export const PaymentAppConnectorState = PaymentAppConnectorStateModelImport;
export type PaymentAppProcessor = PaymentAppProcessorModelImport;
export const PaymentAppProcessor = PaymentAppProcessorModelImport;
export type PaymentAppProcessorCreationRequest = PaymentAppProcessorCreationRequestModelImport;
export const PaymentAppProcessorCreationRequest = PaymentAppProcessorCreationRequestModelImport;
export type PaymentAppProcessorState = PaymentAppProcessorStateModelImport;
export const PaymentAppProcessorState = PaymentAppProcessorStateModelImport;
export type PaymentAppRefundConfiguration = PaymentAppRefundConfigurationModelImport;
export const PaymentAppRefundConfiguration = PaymentAppRefundConfigurationModelImport;
export type PaymentAppRefundConfigurationCreate = PaymentAppRefundConfigurationCreateModelImport;
export const PaymentAppRefundConfigurationCreate = PaymentAppRefundConfigurationCreateModelImport;
export type PaymentAppRefundTargetState = PaymentAppRefundTargetStateModelImport;
export const PaymentAppRefundTargetState = PaymentAppRefundTargetStateModelImport;
export type PaymentAppRefundUpdateRequest = PaymentAppRefundUpdateRequestModelImport;
export const PaymentAppRefundUpdateRequest = PaymentAppRefundUpdateRequestModelImport;
export type PaymentAppVoidTargetState = PaymentAppVoidTargetStateModelImport;
export const PaymentAppVoidTargetState = PaymentAppVoidTargetStateModelImport;
export type PaymentAppVoidUpdateRequest = PaymentAppVoidUpdateRequestModelImport;
export const PaymentAppVoidUpdateRequest = PaymentAppVoidUpdateRequestModelImport;
export type PaymentConnector = PaymentConnectorModelImport;
export const PaymentConnector = PaymentConnectorModelImport;
export type PaymentConnectorConfiguration = PaymentConnectorConfigurationModelImport;
export const PaymentConnectorConfiguration = PaymentConnectorConfigurationModelImport;
export type PaymentConnectorFeature = PaymentConnectorFeatureModelImport;
export const PaymentConnectorFeature = PaymentConnectorFeatureModelImport;
export type PaymentContract = PaymentContractModelImport;
export const PaymentContract = PaymentContractModelImport;
export type PaymentContractState = PaymentContractStateModelImport;
export const PaymentContractState = PaymentContractStateModelImport;
export type PaymentContractType = PaymentContractTypeModelImport;
export const PaymentContractType = PaymentContractTypeModelImport;
export type PaymentInformationHash = PaymentInformationHashModelImport;
export const PaymentInformationHash = PaymentInformationHashModelImport;
export type PaymentInformationHashType = PaymentInformationHashTypeModelImport;
export const PaymentInformationHashType = PaymentInformationHashTypeModelImport;
export type PaymentInitiationAdviceFile = PaymentInitiationAdviceFileModelImport;
export const PaymentInitiationAdviceFile = PaymentInitiationAdviceFileModelImport;
export type PaymentInitiationAdviceFileState = PaymentInitiationAdviceFileStateModelImport;
export const PaymentInitiationAdviceFileState = PaymentInitiationAdviceFileStateModelImport;
export type PaymentLink = PaymentLinkModelImport;
export const PaymentLink = PaymentLinkModelImport;
export type PaymentLinkAddressHandlingMode = PaymentLinkAddressHandlingModeModelImport;
export const PaymentLinkAddressHandlingMode = PaymentLinkAddressHandlingModeModelImport;
export type PaymentLinkProtectionMode = PaymentLinkProtectionModeModelImport;
export const PaymentLinkProtectionMode = PaymentLinkProtectionModeModelImport;
export type PaymentLinkUpdate = PaymentLinkUpdateModelImport;
export const PaymentLinkUpdate = PaymentLinkUpdateModelImport;
export type PaymentMethod = PaymentMethodModelImport;
export const PaymentMethod = PaymentMethodModelImport;
export type PaymentMethodBrand = PaymentMethodBrandModelImport;
export const PaymentMethodBrand = PaymentMethodBrandModelImport;
export type PaymentMethodConfiguration = PaymentMethodConfigurationModelImport;
export const PaymentMethodConfiguration = PaymentMethodConfigurationModelImport;
export type PaymentPrimaryRiskTaker = PaymentPrimaryRiskTakerModelImport;
export const PaymentPrimaryRiskTaker = PaymentPrimaryRiskTakerModelImport;
export type PaymentProcessor = PaymentProcessorModelImport;
export const PaymentProcessor = PaymentProcessorModelImport;
export type PaymentProcessorConfiguration = PaymentProcessorConfigurationModelImport;
export const PaymentProcessorConfiguration = PaymentProcessorConfigurationModelImport;
export type PaymentTerminal = PaymentTerminalModelImport;
export const PaymentTerminal = PaymentTerminalModelImport;
export type PaymentTerminalAddress = PaymentTerminalAddressModelImport;
export const PaymentTerminalAddress = PaymentTerminalAddressModelImport;
export type PaymentTerminalConfiguration = PaymentTerminalConfigurationModelImport;
export const PaymentTerminalConfiguration = PaymentTerminalConfigurationModelImport;
export type PaymentTerminalConfigurationState = PaymentTerminalConfigurationStateModelImport;
export const PaymentTerminalConfigurationState = PaymentTerminalConfigurationStateModelImport;
export type PaymentTerminalConfigurationVersion = PaymentTerminalConfigurationVersionModelImport;
export const PaymentTerminalConfigurationVersion = PaymentTerminalConfigurationVersionModelImport;
export type PaymentTerminalConfigurationVersionState = PaymentTerminalConfigurationVersionStateModelImport;
export const PaymentTerminalConfigurationVersionState = PaymentTerminalConfigurationVersionStateModelImport;
export type PaymentTerminalDccTransactionSum = PaymentTerminalDccTransactionSumModelImport;
export const PaymentTerminalDccTransactionSum = PaymentTerminalDccTransactionSumModelImport;
export type PaymentTerminalLocation = PaymentTerminalLocationModelImport;
export const PaymentTerminalLocation = PaymentTerminalLocationModelImport;
export type PaymentTerminalLocationState = PaymentTerminalLocationStateModelImport;
export const PaymentTerminalLocationState = PaymentTerminalLocationStateModelImport;
export type PaymentTerminalLocationVersion = PaymentTerminalLocationVersionModelImport;
export const PaymentTerminalLocationVersion = PaymentTerminalLocationVersionModelImport;
export type PaymentTerminalLocationVersionState = PaymentTerminalLocationVersionStateModelImport;
export const PaymentTerminalLocationVersionState = PaymentTerminalLocationVersionStateModelImport;
export type PaymentTerminalReceiptType = PaymentTerminalReceiptTypeModelImport;
export const PaymentTerminalReceiptType = PaymentTerminalReceiptTypeModelImport;
export type PaymentTerminalState = PaymentTerminalStateModelImport;
export const PaymentTerminalState = PaymentTerminalStateModelImport;
export type PaymentTerminalTransactionSum = PaymentTerminalTransactionSumModelImport;
export const PaymentTerminalTransactionSum = PaymentTerminalTransactionSumModelImport;
export type PaymentTerminalTransactionSummary = PaymentTerminalTransactionSummaryModelImport;
export const PaymentTerminalTransactionSummary = PaymentTerminalTransactionSummaryModelImport;
export type PaymentTerminalTransactionSummaryFetchRequest = PaymentTerminalTransactionSummaryFetchRequestModelImport;
export const PaymentTerminalTransactionSummaryFetchRequest = PaymentTerminalTransactionSummaryFetchRequestModelImport;
export type PaymentTerminalType = PaymentTerminalTypeModelImport;
export const PaymentTerminalType = PaymentTerminalTypeModelImport;
export type Permission = PermissionModelImport;
export const Permission = PermissionModelImport;
export type PersistableCurrencyAmount = PersistableCurrencyAmountModelImport;
export const PersistableCurrencyAmount = PersistableCurrencyAmountModelImport;
export type PersistableCurrencyAmountUpdate = PersistableCurrencyAmountUpdateModelImport;
export const PersistableCurrencyAmountUpdate = PersistableCurrencyAmountUpdateModelImport;
export type ProductFeeType = ProductFeeTypeModelImport;
export const ProductFeeType = ProductFeeTypeModelImport;
export type ProductMeteredFee = ProductMeteredFeeModelImport;
export const ProductMeteredFee = ProductMeteredFeeModelImport;
export type ProductMeteredFeeUpdate = ProductMeteredFeeUpdateModelImport;
export const ProductMeteredFeeUpdate = ProductMeteredFeeUpdateModelImport;
export type ProductMeteredTierFee = ProductMeteredTierFeeModelImport;
export const ProductMeteredTierFee = ProductMeteredTierFeeModelImport;
export type ProductMeteredTierFeeUpdate = ProductMeteredTierFeeUpdateModelImport;
export const ProductMeteredTierFeeUpdate = ProductMeteredTierFeeUpdateModelImport;
export type ProductMeteredTierPricing = ProductMeteredTierPricingModelImport;
export const ProductMeteredTierPricing = ProductMeteredTierPricingModelImport;
export type ProductPeriodFee = ProductPeriodFeeModelImport;
export const ProductPeriodFee = ProductPeriodFeeModelImport;
export type ProductPeriodFeeUpdate = ProductPeriodFeeUpdateModelImport;
export const ProductPeriodFeeUpdate = ProductPeriodFeeUpdateModelImport;
export type ProductSetupFee = ProductSetupFeeModelImport;
export const ProductSetupFee = ProductSetupFeeModelImport;
export type ProductSetupFeeUpdate = ProductSetupFeeUpdateModelImport;
export const ProductSetupFeeUpdate = ProductSetupFeeUpdateModelImport;
export type RecurringIndicator = RecurringIndicatorModelImport;
export const RecurringIndicator = RecurringIndicatorModelImport;
export type Refund = RefundModelImport;
export const Refund = RefundModelImport;
export type RefundComment = RefundCommentModelImport;
export const RefundComment = RefundCommentModelImport;
export type RefundCreate = RefundCreateModelImport;
export const RefundCreate = RefundCreateModelImport;
export type RefundState = RefundStateModelImport;
export const RefundState = RefundStateModelImport;
export type RefundType = RefundTypeModelImport;
export const RefundType = RefundTypeModelImport;
export type RenderedDocument = RenderedDocumentModelImport;
export const RenderedDocument = RenderedDocumentModelImport;
export type RenderedTerminalReceipt = RenderedTerminalReceiptModelImport;
export const RenderedTerminalReceipt = RenderedTerminalReceiptModelImport;
export type RenderedTerminalTransactionSummary = RenderedTerminalTransactionSummaryModelImport;
export const RenderedTerminalTransactionSummary = RenderedTerminalTransactionSummaryModelImport;
export type ResourcePath = ResourcePathModelImport;
export const ResourcePath = ResourcePathModelImport;
export type ResourceState = ResourceStateModelImport;
export const ResourceState = ResourceStateModelImport;
export type RestAddressFormat = RestAddressFormatModelImport;
export const RestAddressFormat = RestAddressFormatModelImport;
export type RestAddressFormatField = RestAddressFormatFieldModelImport;
export const RestAddressFormatField = RestAddressFormatFieldModelImport;
export type RestCountry = RestCountryModelImport;
export const RestCountry = RestCountryModelImport;
export type RestCountryState = RestCountryStateModelImport;
export const RestCountryState = RestCountryStateModelImport;