-
Notifications
You must be signed in to change notification settings - Fork 1
/
aliases.go
760 lines (516 loc) · 23.5 KB
/
aliases.go
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
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
package lithic
import (
"github.com/lithic-com/lithic-go/internal/apierror"
"github.com/lithic-com/lithic-go/shared"
)
type Error = apierror.Error
// This is an alias to an internal type.
type Address = shared.Address
// This is an alias to an internal type.
type AddressParam = shared.AddressParam
// This is an alias to an internal type.
type AuthRule = shared.AuthRule
// Indicates whether the Auth Rule is ACTIVE or INACTIVE
//
// This is an alias to an internal type.
type AuthRuleState = shared.AuthRuleState
// This is an alias to an internal value.
const AuthRuleStateActive = shared.AuthRuleStateActive
// This is an alias to an internal value.
const AuthRuleStateInactive = shared.AuthRuleStateInactive
// This is an alias to an internal type.
type CarrierParam = shared.CarrierParam
// ISO 4217 currency. Its enumerants are ISO 4217 currencies except for some
// special currencies like `XXX`. Enumerants names are lowercase currency code e.g.
// `EUR`, `USD`.
//
// This is an alias to an internal type.
type Currency = shared.Currency
// This is an alias to an internal value.
const CurrencyAed = shared.CurrencyAed
// This is an alias to an internal value.
const CurrencyAfn = shared.CurrencyAfn
// This is an alias to an internal value.
const CurrencyAll = shared.CurrencyAll
// This is an alias to an internal value.
const CurrencyAmd = shared.CurrencyAmd
// This is an alias to an internal value.
const CurrencyAng = shared.CurrencyAng
// This is an alias to an internal value.
const CurrencyAoa = shared.CurrencyAoa
// This is an alias to an internal value.
const CurrencyArs = shared.CurrencyArs
// This is an alias to an internal value.
const CurrencyAud = shared.CurrencyAud
// This is an alias to an internal value.
const CurrencyAwg = shared.CurrencyAwg
// This is an alias to an internal value.
const CurrencyAzn = shared.CurrencyAzn
// This is an alias to an internal value.
const CurrencyBam = shared.CurrencyBam
// This is an alias to an internal value.
const CurrencyBbd = shared.CurrencyBbd
// This is an alias to an internal value.
const CurrencyBdt = shared.CurrencyBdt
// This is an alias to an internal value.
const CurrencyBgn = shared.CurrencyBgn
// This is an alias to an internal value.
const CurrencyBhd = shared.CurrencyBhd
// This is an alias to an internal value.
const CurrencyBif = shared.CurrencyBif
// This is an alias to an internal value.
const CurrencyBmd = shared.CurrencyBmd
// This is an alias to an internal value.
const CurrencyBnd = shared.CurrencyBnd
// This is an alias to an internal value.
const CurrencyBob = shared.CurrencyBob
// This is an alias to an internal value.
const CurrencyBov = shared.CurrencyBov
// This is an alias to an internal value.
const CurrencyBrl = shared.CurrencyBrl
// This is an alias to an internal value.
const CurrencyBsd = shared.CurrencyBsd
// This is an alias to an internal value.
const CurrencyBtn = shared.CurrencyBtn
// This is an alias to an internal value.
const CurrencyBwp = shared.CurrencyBwp
// This is an alias to an internal value.
const CurrencyByn = shared.CurrencyByn
// This is an alias to an internal value.
const CurrencyBzd = shared.CurrencyBzd
// This is an alias to an internal value.
const CurrencyCad = shared.CurrencyCad
// This is an alias to an internal value.
const CurrencyCdf = shared.CurrencyCdf
// This is an alias to an internal value.
const CurrencyChe = shared.CurrencyChe
// This is an alias to an internal value.
const CurrencyChf = shared.CurrencyChf
// This is an alias to an internal value.
const CurrencyChw = shared.CurrencyChw
// This is an alias to an internal value.
const CurrencyClf = shared.CurrencyClf
// This is an alias to an internal value.
const CurrencyClp = shared.CurrencyClp
// This is an alias to an internal value.
const CurrencyCny = shared.CurrencyCny
// This is an alias to an internal value.
const CurrencyCop = shared.CurrencyCop
// This is an alias to an internal value.
const CurrencyCou = shared.CurrencyCou
// This is an alias to an internal value.
const CurrencyCrc = shared.CurrencyCrc
// This is an alias to an internal value.
const CurrencyCuc = shared.CurrencyCuc
// This is an alias to an internal value.
const CurrencyCup = shared.CurrencyCup
// This is an alias to an internal value.
const CurrencyCve = shared.CurrencyCve
// This is an alias to an internal value.
const CurrencyCzk = shared.CurrencyCzk
// This is an alias to an internal value.
const CurrencyDjf = shared.CurrencyDjf
// This is an alias to an internal value.
const CurrencyDkk = shared.CurrencyDkk
// This is an alias to an internal value.
const CurrencyDop = shared.CurrencyDop
// This is an alias to an internal value.
const CurrencyDzd = shared.CurrencyDzd
// This is an alias to an internal value.
const CurrencyEgp = shared.CurrencyEgp
// This is an alias to an internal value.
const CurrencyErn = shared.CurrencyErn
// This is an alias to an internal value.
const CurrencyEtb = shared.CurrencyEtb
// This is an alias to an internal value.
const CurrencyEur = shared.CurrencyEur
// This is an alias to an internal value.
const CurrencyFjd = shared.CurrencyFjd
// This is an alias to an internal value.
const CurrencyFkp = shared.CurrencyFkp
// This is an alias to an internal value.
const CurrencyGbp = shared.CurrencyGbp
// This is an alias to an internal value.
const CurrencyGel = shared.CurrencyGel
// This is an alias to an internal value.
const CurrencyGhs = shared.CurrencyGhs
// This is an alias to an internal value.
const CurrencyGip = shared.CurrencyGip
// This is an alias to an internal value.
const CurrencyGmd = shared.CurrencyGmd
// This is an alias to an internal value.
const CurrencyGnf = shared.CurrencyGnf
// This is an alias to an internal value.
const CurrencyGtq = shared.CurrencyGtq
// This is an alias to an internal value.
const CurrencyGyd = shared.CurrencyGyd
// This is an alias to an internal value.
const CurrencyHkd = shared.CurrencyHkd
// This is an alias to an internal value.
const CurrencyHnl = shared.CurrencyHnl
// This is an alias to an internal value.
const CurrencyHrk = shared.CurrencyHrk
// This is an alias to an internal value.
const CurrencyHtg = shared.CurrencyHtg
// This is an alias to an internal value.
const CurrencyHuf = shared.CurrencyHuf
// This is an alias to an internal value.
const CurrencyIdr = shared.CurrencyIdr
// This is an alias to an internal value.
const CurrencyIls = shared.CurrencyIls
// This is an alias to an internal value.
const CurrencyInr = shared.CurrencyInr
// This is an alias to an internal value.
const CurrencyIqd = shared.CurrencyIqd
// This is an alias to an internal value.
const CurrencyIrr = shared.CurrencyIrr
// This is an alias to an internal value.
const CurrencyIsk = shared.CurrencyIsk
// This is an alias to an internal value.
const CurrencyJmd = shared.CurrencyJmd
// This is an alias to an internal value.
const CurrencyJod = shared.CurrencyJod
// This is an alias to an internal value.
const CurrencyJpy = shared.CurrencyJpy
// This is an alias to an internal value.
const CurrencyKes = shared.CurrencyKes
// This is an alias to an internal value.
const CurrencyKgs = shared.CurrencyKgs
// This is an alias to an internal value.
const CurrencyKhr = shared.CurrencyKhr
// This is an alias to an internal value.
const CurrencyKmf = shared.CurrencyKmf
// This is an alias to an internal value.
const CurrencyKpw = shared.CurrencyKpw
// This is an alias to an internal value.
const CurrencyKrw = shared.CurrencyKrw
// This is an alias to an internal value.
const CurrencyKwd = shared.CurrencyKwd
// This is an alias to an internal value.
const CurrencyKyd = shared.CurrencyKyd
// This is an alias to an internal value.
const CurrencyKzt = shared.CurrencyKzt
// This is an alias to an internal value.
const CurrencyLak = shared.CurrencyLak
// This is an alias to an internal value.
const CurrencyLbp = shared.CurrencyLbp
// This is an alias to an internal value.
const CurrencyLkr = shared.CurrencyLkr
// This is an alias to an internal value.
const CurrencyLrd = shared.CurrencyLrd
// This is an alias to an internal value.
const CurrencyLsl = shared.CurrencyLsl
// This is an alias to an internal value.
const CurrencyLyd = shared.CurrencyLyd
// This is an alias to an internal value.
const CurrencyMad = shared.CurrencyMad
// This is an alias to an internal value.
const CurrencyMdl = shared.CurrencyMdl
// This is an alias to an internal value.
const CurrencyMga = shared.CurrencyMga
// This is an alias to an internal value.
const CurrencyMkd = shared.CurrencyMkd
// This is an alias to an internal value.
const CurrencyMmk = shared.CurrencyMmk
// This is an alias to an internal value.
const CurrencyMnt = shared.CurrencyMnt
// This is an alias to an internal value.
const CurrencyMop = shared.CurrencyMop
// This is an alias to an internal value.
const CurrencyMru = shared.CurrencyMru
// This is an alias to an internal value.
const CurrencyMur = shared.CurrencyMur
// This is an alias to an internal value.
const CurrencyMvr = shared.CurrencyMvr
// This is an alias to an internal value.
const CurrencyMwk = shared.CurrencyMwk
// This is an alias to an internal value.
const CurrencyMxn = shared.CurrencyMxn
// This is an alias to an internal value.
const CurrencyMxv = shared.CurrencyMxv
// This is an alias to an internal value.
const CurrencyMyr = shared.CurrencyMyr
// This is an alias to an internal value.
const CurrencyMzn = shared.CurrencyMzn
// This is an alias to an internal value.
const CurrencyNad = shared.CurrencyNad
// This is an alias to an internal value.
const CurrencyNgn = shared.CurrencyNgn
// This is an alias to an internal value.
const CurrencyNio = shared.CurrencyNio
// This is an alias to an internal value.
const CurrencyNok = shared.CurrencyNok
// This is an alias to an internal value.
const CurrencyNpr = shared.CurrencyNpr
// This is an alias to an internal value.
const CurrencyNzd = shared.CurrencyNzd
// This is an alias to an internal value.
const CurrencyOmr = shared.CurrencyOmr
// This is an alias to an internal value.
const CurrencyPab = shared.CurrencyPab
// This is an alias to an internal value.
const CurrencyPen = shared.CurrencyPen
// This is an alias to an internal value.
const CurrencyPgk = shared.CurrencyPgk
// This is an alias to an internal value.
const CurrencyPhp = shared.CurrencyPhp
// This is an alias to an internal value.
const CurrencyPkr = shared.CurrencyPkr
// This is an alias to an internal value.
const CurrencyPln = shared.CurrencyPln
// This is an alias to an internal value.
const CurrencyPyg = shared.CurrencyPyg
// This is an alias to an internal value.
const CurrencyQar = shared.CurrencyQar
// This is an alias to an internal value.
const CurrencyRon = shared.CurrencyRon
// This is an alias to an internal value.
const CurrencyRsd = shared.CurrencyRsd
// This is an alias to an internal value.
const CurrencyRub = shared.CurrencyRub
// This is an alias to an internal value.
const CurrencyRwf = shared.CurrencyRwf
// This is an alias to an internal value.
const CurrencySar = shared.CurrencySar
// This is an alias to an internal value.
const CurrencySbd = shared.CurrencySbd
// This is an alias to an internal value.
const CurrencyScr = shared.CurrencyScr
// This is an alias to an internal value.
const CurrencySdg = shared.CurrencySdg
// This is an alias to an internal value.
const CurrencySek = shared.CurrencySek
// This is an alias to an internal value.
const CurrencySgd = shared.CurrencySgd
// This is an alias to an internal value.
const CurrencyShp = shared.CurrencyShp
// This is an alias to an internal value.
const CurrencySle = shared.CurrencySle
// This is an alias to an internal value.
const CurrencySll = shared.CurrencySll
// This is an alias to an internal value.
const CurrencySos = shared.CurrencySos
// This is an alias to an internal value.
const CurrencySrd = shared.CurrencySrd
// This is an alias to an internal value.
const CurrencySsp = shared.CurrencySsp
// This is an alias to an internal value.
const CurrencyStn = shared.CurrencyStn
// This is an alias to an internal value.
const CurrencySvc = shared.CurrencySvc
// This is an alias to an internal value.
const CurrencySyp = shared.CurrencySyp
// This is an alias to an internal value.
const CurrencySzl = shared.CurrencySzl
// This is an alias to an internal value.
const CurrencyThb = shared.CurrencyThb
// This is an alias to an internal value.
const CurrencyTjs = shared.CurrencyTjs
// This is an alias to an internal value.
const CurrencyTmt = shared.CurrencyTmt
// This is an alias to an internal value.
const CurrencyTnd = shared.CurrencyTnd
// This is an alias to an internal value.
const CurrencyTop = shared.CurrencyTop
// This is an alias to an internal value.
const CurrencyTry = shared.CurrencyTry
// This is an alias to an internal value.
const CurrencyTtd = shared.CurrencyTtd
// This is an alias to an internal value.
const CurrencyTwd = shared.CurrencyTwd
// This is an alias to an internal value.
const CurrencyTzs = shared.CurrencyTzs
// This is an alias to an internal value.
const CurrencyUah = shared.CurrencyUah
// This is an alias to an internal value.
const CurrencyUgx = shared.CurrencyUgx
// This is an alias to an internal value.
const CurrencyUsd = shared.CurrencyUsd
// This is an alias to an internal value.
const CurrencyUsn = shared.CurrencyUsn
// This is an alias to an internal value.
const CurrencyUyi = shared.CurrencyUyi
// This is an alias to an internal value.
const CurrencyUyu = shared.CurrencyUyu
// This is an alias to an internal value.
const CurrencyUyw = shared.CurrencyUyw
// This is an alias to an internal value.
const CurrencyUzs = shared.CurrencyUzs
// This is an alias to an internal value.
const CurrencyVed = shared.CurrencyVed
// This is an alias to an internal value.
const CurrencyVes = shared.CurrencyVes
// This is an alias to an internal value.
const CurrencyVnd = shared.CurrencyVnd
// This is an alias to an internal value.
const CurrencyVuv = shared.CurrencyVuv
// This is an alias to an internal value.
const CurrencyWst = shared.CurrencyWst
// This is an alias to an internal value.
const CurrencyXaf = shared.CurrencyXaf
// This is an alias to an internal value.
const CurrencyXag = shared.CurrencyXag
// This is an alias to an internal value.
const CurrencyXau = shared.CurrencyXau
// This is an alias to an internal value.
const CurrencyXba = shared.CurrencyXba
// This is an alias to an internal value.
const CurrencyXbb = shared.CurrencyXbb
// This is an alias to an internal value.
const CurrencyXbc = shared.CurrencyXbc
// This is an alias to an internal value.
const CurrencyXbd = shared.CurrencyXbd
// This is an alias to an internal value.
const CurrencyXcd = shared.CurrencyXcd
// This is an alias to an internal value.
const CurrencyXdr = shared.CurrencyXdr
// This is an alias to an internal value.
const CurrencyXof = shared.CurrencyXof
// This is an alias to an internal value.
const CurrencyXpd = shared.CurrencyXpd
// This is an alias to an internal value.
const CurrencyXpf = shared.CurrencyXpf
// This is an alias to an internal value.
const CurrencyXpt = shared.CurrencyXpt
// This is an alias to an internal value.
const CurrencyXsu = shared.CurrencyXsu
// This is an alias to an internal value.
const CurrencyXts = shared.CurrencyXts
// This is an alias to an internal value.
const CurrencyXua = shared.CurrencyXua
// This is an alias to an internal value.
const CurrencyXxx = shared.CurrencyXxx
// This is an alias to an internal value.
const CurrencyYer = shared.CurrencyYer
// This is an alias to an internal value.
const CurrencyZar = shared.CurrencyZar
// This is an alias to an internal value.
const CurrencyZmw = shared.CurrencyZmw
// This is an alias to an internal value.
const CurrencyZwl = shared.CurrencyZwl
// Describes the document and the required document image uploads required to
// re-run KYC
//
// This is an alias to an internal type.
type Document = shared.Document
// Type of documentation to be submitted for verification of an account holder
//
// This is an alias to an internal type.
type DocumentDocumentType = shared.DocumentDocumentType
// This is an alias to an internal value.
const DocumentDocumentTypeDriversLicense = shared.DocumentDocumentTypeDriversLicense
// This is an alias to an internal value.
const DocumentDocumentTypePassport = shared.DocumentDocumentTypePassport
// This is an alias to an internal value.
const DocumentDocumentTypePassportCard = shared.DocumentDocumentTypePassportCard
// This is an alias to an internal value.
const DocumentDocumentTypeEinLetter = shared.DocumentDocumentTypeEinLetter
// This is an alias to an internal value.
const DocumentDocumentTypeTaxReturn = shared.DocumentDocumentTypeTaxReturn
// This is an alias to an internal value.
const DocumentDocumentTypeOperatingAgreement = shared.DocumentDocumentTypeOperatingAgreement
// This is an alias to an internal value.
const DocumentDocumentTypeCertificateOfFormation = shared.DocumentDocumentTypeCertificateOfFormation
// This is an alias to an internal value.
const DocumentDocumentTypeCertificateOfGoodStanding = shared.DocumentDocumentTypeCertificateOfGoodStanding
// This is an alias to an internal value.
const DocumentDocumentTypeArticlesOfIncorporation = shared.DocumentDocumentTypeArticlesOfIncorporation
// This is an alias to an internal value.
const DocumentDocumentTypeArticlesOfOrganization = shared.DocumentDocumentTypeArticlesOfOrganization
// This is an alias to an internal value.
const DocumentDocumentTypeBylaws = shared.DocumentDocumentTypeBylaws
// This is an alias to an internal value.
const DocumentDocumentTypeGovernmentBusinessLicense = shared.DocumentDocumentTypeGovernmentBusinessLicense
// This is an alias to an internal value.
const DocumentDocumentTypePartnershipAgreement = shared.DocumentDocumentTypePartnershipAgreement
// This is an alias to an internal value.
const DocumentDocumentTypeSs4Form = shared.DocumentDocumentTypeSs4Form
// This is an alias to an internal value.
const DocumentDocumentTypeBankStatement = shared.DocumentDocumentTypeBankStatement
// This is an alias to an internal value.
const DocumentDocumentTypeUtilityBillStatement = shared.DocumentDocumentTypeUtilityBillStatement
// This is an alias to an internal value.
const DocumentDocumentTypeSsnCard = shared.DocumentDocumentTypeSsnCard
// This is an alias to an internal value.
const DocumentDocumentTypeItinLetter = shared.DocumentDocumentTypeItinLetter
// Represents a single image of the document to upload.
//
// This is an alias to an internal type.
type DocumentRequiredDocumentUpload = shared.DocumentRequiredDocumentUpload
// Type of image to upload.
//
// This is an alias to an internal type.
type DocumentRequiredDocumentUploadsImageType = shared.DocumentRequiredDocumentUploadsImageType
// This is an alias to an internal value.
const DocumentRequiredDocumentUploadsImageTypeFront = shared.DocumentRequiredDocumentUploadsImageTypeFront
// This is an alias to an internal value.
const DocumentRequiredDocumentUploadsImageTypeBack = shared.DocumentRequiredDocumentUploadsImageTypeBack
// Status of an account holder's document upload.
//
// This is an alias to an internal type.
type DocumentRequiredDocumentUploadsStatus = shared.DocumentRequiredDocumentUploadsStatus
// This is an alias to an internal value.
const DocumentRequiredDocumentUploadsStatusAccepted = shared.DocumentRequiredDocumentUploadsStatusAccepted
// This is an alias to an internal value.
const DocumentRequiredDocumentUploadsStatusRejected = shared.DocumentRequiredDocumentUploadsStatusRejected
// This is an alias to an internal value.
const DocumentRequiredDocumentUploadsStatusPendingUpload = shared.DocumentRequiredDocumentUploadsStatusPendingUpload
// This is an alias to an internal value.
const DocumentRequiredDocumentUploadsStatusUploaded = shared.DocumentRequiredDocumentUploadsStatusUploaded
// This is an alias to an internal value.
const DocumentRequiredDocumentUploadsStatusPartialApproval = shared.DocumentRequiredDocumentUploadsStatusPartialApproval
// The status reasons for an account holder document upload that is not ACCEPTED
//
// This is an alias to an internal type.
type DocumentRequiredDocumentUploadsStatusReason = shared.DocumentRequiredDocumentUploadsStatusReason
// This is an alias to an internal value.
const DocumentRequiredDocumentUploadsStatusReasonDocumentMissingRequiredData = shared.DocumentRequiredDocumentUploadsStatusReasonDocumentMissingRequiredData
// This is an alias to an internal value.
const DocumentRequiredDocumentUploadsStatusReasonDocumentUploadTooBlurry = shared.DocumentRequiredDocumentUploadsStatusReasonDocumentUploadTooBlurry
// This is an alias to an internal value.
const DocumentRequiredDocumentUploadsStatusReasonFileSizeTooLarge = shared.DocumentRequiredDocumentUploadsStatusReasonFileSizeTooLarge
// This is an alias to an internal value.
const DocumentRequiredDocumentUploadsStatusReasonInvalidDocumentType = shared.DocumentRequiredDocumentUploadsStatusReasonInvalidDocumentType
// This is an alias to an internal value.
const DocumentRequiredDocumentUploadsStatusReasonInvalidDocumentUpload = shared.DocumentRequiredDocumentUploadsStatusReasonInvalidDocumentUpload
// This is an alias to an internal value.
const DocumentRequiredDocumentUploadsStatusReasonInvalidEntity = shared.DocumentRequiredDocumentUploadsStatusReasonInvalidEntity
// This is an alias to an internal value.
const DocumentRequiredDocumentUploadsStatusReasonDocumentExpired = shared.DocumentRequiredDocumentUploadsStatusReasonDocumentExpired
// This is an alias to an internal value.
const DocumentRequiredDocumentUploadsStatusReasonDocumentIssuedGreaterThan30Days = shared.DocumentRequiredDocumentUploadsStatusReasonDocumentIssuedGreaterThan30Days
// This is an alias to an internal value.
const DocumentRequiredDocumentUploadsStatusReasonDocumentTypeNotSupported = shared.DocumentRequiredDocumentUploadsStatusReasonDocumentTypeNotSupported
// This is an alias to an internal value.
const DocumentRequiredDocumentUploadsStatusReasonUnknownFailureReason = shared.DocumentRequiredDocumentUploadsStatusReasonUnknownFailureReason
// This is an alias to an internal value.
const DocumentRequiredDocumentUploadsStatusReasonUnknownError = shared.DocumentRequiredDocumentUploadsStatusReasonUnknownError
// This is an alias to an internal type.
type ShippingAddressParam = shared.ShippingAddressParam
// This is an alias to an internal type.
type VelocityLimitParams = shared.VelocityLimitParams
// This is an alias to an internal type.
type VelocityLimitParamsFilters = shared.VelocityLimitParamsFilters
// The size of the trailing window to calculate Spend Velocity over in seconds.
//
// This is an alias to an internal type.
type VelocityLimitParamsPeriodUnion = shared.VelocityLimitParamsPeriodUnion
// This is an alias to an internal type.
type VelocityLimitParamsScope = shared.VelocityLimitParamsScope
// This is an alias to an internal value.
const VelocityLimitParamsScopeCard = shared.VelocityLimitParamsScopeCard
// This is an alias to an internal value.
const VelocityLimitParamsScopeAccount = shared.VelocityLimitParamsScopeAccount
// The window of time to calculate Spend Velocity over.
//
// - `DAY`: Velocity over the current day since midnight Eastern Time.
// - `MONTH`: Velocity over the current month since 00:00 / 12 AM on the first of
// the month in Eastern Time.
//
// This is an alias to an internal type.
type VelocityLimitParamsPeriodWindow = shared.VelocityLimitParamsPeriodWindow
// This is an alias to an internal value.
const VelocityLimitParamsPeriodWindowDay = shared.VelocityLimitParamsPeriodWindowDay
// This is an alias to an internal value.
const VelocityLimitParamsPeriodWindowMonth = shared.VelocityLimitParamsPeriodWindowMonth