-
Notifications
You must be signed in to change notification settings - Fork 472
/
Copy pathpaymentmethodconfiguration.go
2304 lines (2012 loc) · 150 KB
/
paymentmethodconfiguration.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
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
//
//
// File generated from our OpenAPI spec
//
//
package stripe
// The account's display preference.
type PaymentMethodConfigurationACSSDebitDisplayPreferencePreference string
// List of values that PaymentMethodConfigurationACSSDebitDisplayPreferencePreference can take
const (
PaymentMethodConfigurationACSSDebitDisplayPreferencePreferenceNone PaymentMethodConfigurationACSSDebitDisplayPreferencePreference = "none"
PaymentMethodConfigurationACSSDebitDisplayPreferencePreferenceOff PaymentMethodConfigurationACSSDebitDisplayPreferencePreference = "off"
PaymentMethodConfigurationACSSDebitDisplayPreferencePreferenceOn PaymentMethodConfigurationACSSDebitDisplayPreferencePreference = "on"
)
// The effective display preference value.
type PaymentMethodConfigurationACSSDebitDisplayPreferenceValue string
// List of values that PaymentMethodConfigurationACSSDebitDisplayPreferenceValue can take
const (
PaymentMethodConfigurationACSSDebitDisplayPreferenceValueOff PaymentMethodConfigurationACSSDebitDisplayPreferenceValue = "off"
PaymentMethodConfigurationACSSDebitDisplayPreferenceValueOn PaymentMethodConfigurationACSSDebitDisplayPreferenceValue = "on"
)
// The account's display preference.
type PaymentMethodConfigurationAffirmDisplayPreferencePreference string
// List of values that PaymentMethodConfigurationAffirmDisplayPreferencePreference can take
const (
PaymentMethodConfigurationAffirmDisplayPreferencePreferenceNone PaymentMethodConfigurationAffirmDisplayPreferencePreference = "none"
PaymentMethodConfigurationAffirmDisplayPreferencePreferenceOff PaymentMethodConfigurationAffirmDisplayPreferencePreference = "off"
PaymentMethodConfigurationAffirmDisplayPreferencePreferenceOn PaymentMethodConfigurationAffirmDisplayPreferencePreference = "on"
)
// The effective display preference value.
type PaymentMethodConfigurationAffirmDisplayPreferenceValue string
// List of values that PaymentMethodConfigurationAffirmDisplayPreferenceValue can take
const (
PaymentMethodConfigurationAffirmDisplayPreferenceValueOff PaymentMethodConfigurationAffirmDisplayPreferenceValue = "off"
PaymentMethodConfigurationAffirmDisplayPreferenceValueOn PaymentMethodConfigurationAffirmDisplayPreferenceValue = "on"
)
// The account's display preference.
type PaymentMethodConfigurationAfterpayClearpayDisplayPreferencePreference string
// List of values that PaymentMethodConfigurationAfterpayClearpayDisplayPreferencePreference can take
const (
PaymentMethodConfigurationAfterpayClearpayDisplayPreferencePreferenceNone PaymentMethodConfigurationAfterpayClearpayDisplayPreferencePreference = "none"
PaymentMethodConfigurationAfterpayClearpayDisplayPreferencePreferenceOff PaymentMethodConfigurationAfterpayClearpayDisplayPreferencePreference = "off"
PaymentMethodConfigurationAfterpayClearpayDisplayPreferencePreferenceOn PaymentMethodConfigurationAfterpayClearpayDisplayPreferencePreference = "on"
)
// The effective display preference value.
type PaymentMethodConfigurationAfterpayClearpayDisplayPreferenceValue string
// List of values that PaymentMethodConfigurationAfterpayClearpayDisplayPreferenceValue can take
const (
PaymentMethodConfigurationAfterpayClearpayDisplayPreferenceValueOff PaymentMethodConfigurationAfterpayClearpayDisplayPreferenceValue = "off"
PaymentMethodConfigurationAfterpayClearpayDisplayPreferenceValueOn PaymentMethodConfigurationAfterpayClearpayDisplayPreferenceValue = "on"
)
// The account's display preference.
type PaymentMethodConfigurationAlipayDisplayPreferencePreference string
// List of values that PaymentMethodConfigurationAlipayDisplayPreferencePreference can take
const (
PaymentMethodConfigurationAlipayDisplayPreferencePreferenceNone PaymentMethodConfigurationAlipayDisplayPreferencePreference = "none"
PaymentMethodConfigurationAlipayDisplayPreferencePreferenceOff PaymentMethodConfigurationAlipayDisplayPreferencePreference = "off"
PaymentMethodConfigurationAlipayDisplayPreferencePreferenceOn PaymentMethodConfigurationAlipayDisplayPreferencePreference = "on"
)
// The effective display preference value.
type PaymentMethodConfigurationAlipayDisplayPreferenceValue string
// List of values that PaymentMethodConfigurationAlipayDisplayPreferenceValue can take
const (
PaymentMethodConfigurationAlipayDisplayPreferenceValueOff PaymentMethodConfigurationAlipayDisplayPreferenceValue = "off"
PaymentMethodConfigurationAlipayDisplayPreferenceValueOn PaymentMethodConfigurationAlipayDisplayPreferenceValue = "on"
)
// The account's display preference.
type PaymentMethodConfigurationAlmaDisplayPreferencePreference string
// List of values that PaymentMethodConfigurationAlmaDisplayPreferencePreference can take
const (
PaymentMethodConfigurationAlmaDisplayPreferencePreferenceNone PaymentMethodConfigurationAlmaDisplayPreferencePreference = "none"
PaymentMethodConfigurationAlmaDisplayPreferencePreferenceOff PaymentMethodConfigurationAlmaDisplayPreferencePreference = "off"
PaymentMethodConfigurationAlmaDisplayPreferencePreferenceOn PaymentMethodConfigurationAlmaDisplayPreferencePreference = "on"
)
// The effective display preference value.
type PaymentMethodConfigurationAlmaDisplayPreferenceValue string
// List of values that PaymentMethodConfigurationAlmaDisplayPreferenceValue can take
const (
PaymentMethodConfigurationAlmaDisplayPreferenceValueOff PaymentMethodConfigurationAlmaDisplayPreferenceValue = "off"
PaymentMethodConfigurationAlmaDisplayPreferenceValueOn PaymentMethodConfigurationAlmaDisplayPreferenceValue = "on"
)
// The account's display preference.
type PaymentMethodConfigurationAmazonPayDisplayPreferencePreference string
// List of values that PaymentMethodConfigurationAmazonPayDisplayPreferencePreference can take
const (
PaymentMethodConfigurationAmazonPayDisplayPreferencePreferenceNone PaymentMethodConfigurationAmazonPayDisplayPreferencePreference = "none"
PaymentMethodConfigurationAmazonPayDisplayPreferencePreferenceOff PaymentMethodConfigurationAmazonPayDisplayPreferencePreference = "off"
PaymentMethodConfigurationAmazonPayDisplayPreferencePreferenceOn PaymentMethodConfigurationAmazonPayDisplayPreferencePreference = "on"
)
// The effective display preference value.
type PaymentMethodConfigurationAmazonPayDisplayPreferenceValue string
// List of values that PaymentMethodConfigurationAmazonPayDisplayPreferenceValue can take
const (
PaymentMethodConfigurationAmazonPayDisplayPreferenceValueOff PaymentMethodConfigurationAmazonPayDisplayPreferenceValue = "off"
PaymentMethodConfigurationAmazonPayDisplayPreferenceValueOn PaymentMethodConfigurationAmazonPayDisplayPreferenceValue = "on"
)
// The account's display preference.
type PaymentMethodConfigurationApplePayDisplayPreferencePreference string
// List of values that PaymentMethodConfigurationApplePayDisplayPreferencePreference can take
const (
PaymentMethodConfigurationApplePayDisplayPreferencePreferenceNone PaymentMethodConfigurationApplePayDisplayPreferencePreference = "none"
PaymentMethodConfigurationApplePayDisplayPreferencePreferenceOff PaymentMethodConfigurationApplePayDisplayPreferencePreference = "off"
PaymentMethodConfigurationApplePayDisplayPreferencePreferenceOn PaymentMethodConfigurationApplePayDisplayPreferencePreference = "on"
)
// The effective display preference value.
type PaymentMethodConfigurationApplePayDisplayPreferenceValue string
// List of values that PaymentMethodConfigurationApplePayDisplayPreferenceValue can take
const (
PaymentMethodConfigurationApplePayDisplayPreferenceValueOff PaymentMethodConfigurationApplePayDisplayPreferenceValue = "off"
PaymentMethodConfigurationApplePayDisplayPreferenceValueOn PaymentMethodConfigurationApplePayDisplayPreferenceValue = "on"
)
// The account's display preference.
type PaymentMethodConfigurationAUBECSDebitDisplayPreferencePreference string
// List of values that PaymentMethodConfigurationAUBECSDebitDisplayPreferencePreference can take
const (
PaymentMethodConfigurationAUBECSDebitDisplayPreferencePreferenceNone PaymentMethodConfigurationAUBECSDebitDisplayPreferencePreference = "none"
PaymentMethodConfigurationAUBECSDebitDisplayPreferencePreferenceOff PaymentMethodConfigurationAUBECSDebitDisplayPreferencePreference = "off"
PaymentMethodConfigurationAUBECSDebitDisplayPreferencePreferenceOn PaymentMethodConfigurationAUBECSDebitDisplayPreferencePreference = "on"
)
// The effective display preference value.
type PaymentMethodConfigurationAUBECSDebitDisplayPreferenceValue string
// List of values that PaymentMethodConfigurationAUBECSDebitDisplayPreferenceValue can take
const (
PaymentMethodConfigurationAUBECSDebitDisplayPreferenceValueOff PaymentMethodConfigurationAUBECSDebitDisplayPreferenceValue = "off"
PaymentMethodConfigurationAUBECSDebitDisplayPreferenceValueOn PaymentMethodConfigurationAUBECSDebitDisplayPreferenceValue = "on"
)
// The account's display preference.
type PaymentMethodConfigurationBACSDebitDisplayPreferencePreference string
// List of values that PaymentMethodConfigurationBACSDebitDisplayPreferencePreference can take
const (
PaymentMethodConfigurationBACSDebitDisplayPreferencePreferenceNone PaymentMethodConfigurationBACSDebitDisplayPreferencePreference = "none"
PaymentMethodConfigurationBACSDebitDisplayPreferencePreferenceOff PaymentMethodConfigurationBACSDebitDisplayPreferencePreference = "off"
PaymentMethodConfigurationBACSDebitDisplayPreferencePreferenceOn PaymentMethodConfigurationBACSDebitDisplayPreferencePreference = "on"
)
// The effective display preference value.
type PaymentMethodConfigurationBACSDebitDisplayPreferenceValue string
// List of values that PaymentMethodConfigurationBACSDebitDisplayPreferenceValue can take
const (
PaymentMethodConfigurationBACSDebitDisplayPreferenceValueOff PaymentMethodConfigurationBACSDebitDisplayPreferenceValue = "off"
PaymentMethodConfigurationBACSDebitDisplayPreferenceValueOn PaymentMethodConfigurationBACSDebitDisplayPreferenceValue = "on"
)
// The account's display preference.
type PaymentMethodConfigurationBancontactDisplayPreferencePreference string
// List of values that PaymentMethodConfigurationBancontactDisplayPreferencePreference can take
const (
PaymentMethodConfigurationBancontactDisplayPreferencePreferenceNone PaymentMethodConfigurationBancontactDisplayPreferencePreference = "none"
PaymentMethodConfigurationBancontactDisplayPreferencePreferenceOff PaymentMethodConfigurationBancontactDisplayPreferencePreference = "off"
PaymentMethodConfigurationBancontactDisplayPreferencePreferenceOn PaymentMethodConfigurationBancontactDisplayPreferencePreference = "on"
)
// The effective display preference value.
type PaymentMethodConfigurationBancontactDisplayPreferenceValue string
// List of values that PaymentMethodConfigurationBancontactDisplayPreferenceValue can take
const (
PaymentMethodConfigurationBancontactDisplayPreferenceValueOff PaymentMethodConfigurationBancontactDisplayPreferenceValue = "off"
PaymentMethodConfigurationBancontactDisplayPreferenceValueOn PaymentMethodConfigurationBancontactDisplayPreferenceValue = "on"
)
// The account's display preference.
type PaymentMethodConfigurationBLIKDisplayPreferencePreference string
// List of values that PaymentMethodConfigurationBLIKDisplayPreferencePreference can take
const (
PaymentMethodConfigurationBLIKDisplayPreferencePreferenceNone PaymentMethodConfigurationBLIKDisplayPreferencePreference = "none"
PaymentMethodConfigurationBLIKDisplayPreferencePreferenceOff PaymentMethodConfigurationBLIKDisplayPreferencePreference = "off"
PaymentMethodConfigurationBLIKDisplayPreferencePreferenceOn PaymentMethodConfigurationBLIKDisplayPreferencePreference = "on"
)
// The effective display preference value.
type PaymentMethodConfigurationBLIKDisplayPreferenceValue string
// List of values that PaymentMethodConfigurationBLIKDisplayPreferenceValue can take
const (
PaymentMethodConfigurationBLIKDisplayPreferenceValueOff PaymentMethodConfigurationBLIKDisplayPreferenceValue = "off"
PaymentMethodConfigurationBLIKDisplayPreferenceValueOn PaymentMethodConfigurationBLIKDisplayPreferenceValue = "on"
)
// The account's display preference.
type PaymentMethodConfigurationBoletoDisplayPreferencePreference string
// List of values that PaymentMethodConfigurationBoletoDisplayPreferencePreference can take
const (
PaymentMethodConfigurationBoletoDisplayPreferencePreferenceNone PaymentMethodConfigurationBoletoDisplayPreferencePreference = "none"
PaymentMethodConfigurationBoletoDisplayPreferencePreferenceOff PaymentMethodConfigurationBoletoDisplayPreferencePreference = "off"
PaymentMethodConfigurationBoletoDisplayPreferencePreferenceOn PaymentMethodConfigurationBoletoDisplayPreferencePreference = "on"
)
// The effective display preference value.
type PaymentMethodConfigurationBoletoDisplayPreferenceValue string
// List of values that PaymentMethodConfigurationBoletoDisplayPreferenceValue can take
const (
PaymentMethodConfigurationBoletoDisplayPreferenceValueOff PaymentMethodConfigurationBoletoDisplayPreferenceValue = "off"
PaymentMethodConfigurationBoletoDisplayPreferenceValueOn PaymentMethodConfigurationBoletoDisplayPreferenceValue = "on"
)
// The account's display preference.
type PaymentMethodConfigurationCardDisplayPreferencePreference string
// List of values that PaymentMethodConfigurationCardDisplayPreferencePreference can take
const (
PaymentMethodConfigurationCardDisplayPreferencePreferenceNone PaymentMethodConfigurationCardDisplayPreferencePreference = "none"
PaymentMethodConfigurationCardDisplayPreferencePreferenceOff PaymentMethodConfigurationCardDisplayPreferencePreference = "off"
PaymentMethodConfigurationCardDisplayPreferencePreferenceOn PaymentMethodConfigurationCardDisplayPreferencePreference = "on"
)
// The effective display preference value.
type PaymentMethodConfigurationCardDisplayPreferenceValue string
// List of values that PaymentMethodConfigurationCardDisplayPreferenceValue can take
const (
PaymentMethodConfigurationCardDisplayPreferenceValueOff PaymentMethodConfigurationCardDisplayPreferenceValue = "off"
PaymentMethodConfigurationCardDisplayPreferenceValueOn PaymentMethodConfigurationCardDisplayPreferenceValue = "on"
)
// The account's display preference.
type PaymentMethodConfigurationCartesBancairesDisplayPreferencePreference string
// List of values that PaymentMethodConfigurationCartesBancairesDisplayPreferencePreference can take
const (
PaymentMethodConfigurationCartesBancairesDisplayPreferencePreferenceNone PaymentMethodConfigurationCartesBancairesDisplayPreferencePreference = "none"
PaymentMethodConfigurationCartesBancairesDisplayPreferencePreferenceOff PaymentMethodConfigurationCartesBancairesDisplayPreferencePreference = "off"
PaymentMethodConfigurationCartesBancairesDisplayPreferencePreferenceOn PaymentMethodConfigurationCartesBancairesDisplayPreferencePreference = "on"
)
// The effective display preference value.
type PaymentMethodConfigurationCartesBancairesDisplayPreferenceValue string
// List of values that PaymentMethodConfigurationCartesBancairesDisplayPreferenceValue can take
const (
PaymentMethodConfigurationCartesBancairesDisplayPreferenceValueOff PaymentMethodConfigurationCartesBancairesDisplayPreferenceValue = "off"
PaymentMethodConfigurationCartesBancairesDisplayPreferenceValueOn PaymentMethodConfigurationCartesBancairesDisplayPreferenceValue = "on"
)
// The account's display preference.
type PaymentMethodConfigurationCashAppDisplayPreferencePreference string
// List of values that PaymentMethodConfigurationCashAppDisplayPreferencePreference can take
const (
PaymentMethodConfigurationCashAppDisplayPreferencePreferenceNone PaymentMethodConfigurationCashAppDisplayPreferencePreference = "none"
PaymentMethodConfigurationCashAppDisplayPreferencePreferenceOff PaymentMethodConfigurationCashAppDisplayPreferencePreference = "off"
PaymentMethodConfigurationCashAppDisplayPreferencePreferenceOn PaymentMethodConfigurationCashAppDisplayPreferencePreference = "on"
)
// The effective display preference value.
type PaymentMethodConfigurationCashAppDisplayPreferenceValue string
// List of values that PaymentMethodConfigurationCashAppDisplayPreferenceValue can take
const (
PaymentMethodConfigurationCashAppDisplayPreferenceValueOff PaymentMethodConfigurationCashAppDisplayPreferenceValue = "off"
PaymentMethodConfigurationCashAppDisplayPreferenceValueOn PaymentMethodConfigurationCashAppDisplayPreferenceValue = "on"
)
// The account's display preference.
type PaymentMethodConfigurationCustomerBalanceDisplayPreferencePreference string
// List of values that PaymentMethodConfigurationCustomerBalanceDisplayPreferencePreference can take
const (
PaymentMethodConfigurationCustomerBalanceDisplayPreferencePreferenceNone PaymentMethodConfigurationCustomerBalanceDisplayPreferencePreference = "none"
PaymentMethodConfigurationCustomerBalanceDisplayPreferencePreferenceOff PaymentMethodConfigurationCustomerBalanceDisplayPreferencePreference = "off"
PaymentMethodConfigurationCustomerBalanceDisplayPreferencePreferenceOn PaymentMethodConfigurationCustomerBalanceDisplayPreferencePreference = "on"
)
// The effective display preference value.
type PaymentMethodConfigurationCustomerBalanceDisplayPreferenceValue string
// List of values that PaymentMethodConfigurationCustomerBalanceDisplayPreferenceValue can take
const (
PaymentMethodConfigurationCustomerBalanceDisplayPreferenceValueOff PaymentMethodConfigurationCustomerBalanceDisplayPreferenceValue = "off"
PaymentMethodConfigurationCustomerBalanceDisplayPreferenceValueOn PaymentMethodConfigurationCustomerBalanceDisplayPreferenceValue = "on"
)
// The account's display preference.
type PaymentMethodConfigurationEPSDisplayPreferencePreference string
// List of values that PaymentMethodConfigurationEPSDisplayPreferencePreference can take
const (
PaymentMethodConfigurationEPSDisplayPreferencePreferenceNone PaymentMethodConfigurationEPSDisplayPreferencePreference = "none"
PaymentMethodConfigurationEPSDisplayPreferencePreferenceOff PaymentMethodConfigurationEPSDisplayPreferencePreference = "off"
PaymentMethodConfigurationEPSDisplayPreferencePreferenceOn PaymentMethodConfigurationEPSDisplayPreferencePreference = "on"
)
// The effective display preference value.
type PaymentMethodConfigurationEPSDisplayPreferenceValue string
// List of values that PaymentMethodConfigurationEPSDisplayPreferenceValue can take
const (
PaymentMethodConfigurationEPSDisplayPreferenceValueOff PaymentMethodConfigurationEPSDisplayPreferenceValue = "off"
PaymentMethodConfigurationEPSDisplayPreferenceValueOn PaymentMethodConfigurationEPSDisplayPreferenceValue = "on"
)
// The account's display preference.
type PaymentMethodConfigurationFPXDisplayPreferencePreference string
// List of values that PaymentMethodConfigurationFPXDisplayPreferencePreference can take
const (
PaymentMethodConfigurationFPXDisplayPreferencePreferenceNone PaymentMethodConfigurationFPXDisplayPreferencePreference = "none"
PaymentMethodConfigurationFPXDisplayPreferencePreferenceOff PaymentMethodConfigurationFPXDisplayPreferencePreference = "off"
PaymentMethodConfigurationFPXDisplayPreferencePreferenceOn PaymentMethodConfigurationFPXDisplayPreferencePreference = "on"
)
// The effective display preference value.
type PaymentMethodConfigurationFPXDisplayPreferenceValue string
// List of values that PaymentMethodConfigurationFPXDisplayPreferenceValue can take
const (
PaymentMethodConfigurationFPXDisplayPreferenceValueOff PaymentMethodConfigurationFPXDisplayPreferenceValue = "off"
PaymentMethodConfigurationFPXDisplayPreferenceValueOn PaymentMethodConfigurationFPXDisplayPreferenceValue = "on"
)
// The account's display preference.
type PaymentMethodConfigurationGiropayDisplayPreferencePreference string
// List of values that PaymentMethodConfigurationGiropayDisplayPreferencePreference can take
const (
PaymentMethodConfigurationGiropayDisplayPreferencePreferenceNone PaymentMethodConfigurationGiropayDisplayPreferencePreference = "none"
PaymentMethodConfigurationGiropayDisplayPreferencePreferenceOff PaymentMethodConfigurationGiropayDisplayPreferencePreference = "off"
PaymentMethodConfigurationGiropayDisplayPreferencePreferenceOn PaymentMethodConfigurationGiropayDisplayPreferencePreference = "on"
)
// The effective display preference value.
type PaymentMethodConfigurationGiropayDisplayPreferenceValue string
// List of values that PaymentMethodConfigurationGiropayDisplayPreferenceValue can take
const (
PaymentMethodConfigurationGiropayDisplayPreferenceValueOff PaymentMethodConfigurationGiropayDisplayPreferenceValue = "off"
PaymentMethodConfigurationGiropayDisplayPreferenceValueOn PaymentMethodConfigurationGiropayDisplayPreferenceValue = "on"
)
// The account's display preference.
type PaymentMethodConfigurationGooglePayDisplayPreferencePreference string
// List of values that PaymentMethodConfigurationGooglePayDisplayPreferencePreference can take
const (
PaymentMethodConfigurationGooglePayDisplayPreferencePreferenceNone PaymentMethodConfigurationGooglePayDisplayPreferencePreference = "none"
PaymentMethodConfigurationGooglePayDisplayPreferencePreferenceOff PaymentMethodConfigurationGooglePayDisplayPreferencePreference = "off"
PaymentMethodConfigurationGooglePayDisplayPreferencePreferenceOn PaymentMethodConfigurationGooglePayDisplayPreferencePreference = "on"
)
// The effective display preference value.
type PaymentMethodConfigurationGooglePayDisplayPreferenceValue string
// List of values that PaymentMethodConfigurationGooglePayDisplayPreferenceValue can take
const (
PaymentMethodConfigurationGooglePayDisplayPreferenceValueOff PaymentMethodConfigurationGooglePayDisplayPreferenceValue = "off"
PaymentMethodConfigurationGooglePayDisplayPreferenceValueOn PaymentMethodConfigurationGooglePayDisplayPreferenceValue = "on"
)
// The account's display preference.
type PaymentMethodConfigurationGopayDisplayPreferencePreference string
// List of values that PaymentMethodConfigurationGopayDisplayPreferencePreference can take
const (
PaymentMethodConfigurationGopayDisplayPreferencePreferenceNone PaymentMethodConfigurationGopayDisplayPreferencePreference = "none"
PaymentMethodConfigurationGopayDisplayPreferencePreferenceOff PaymentMethodConfigurationGopayDisplayPreferencePreference = "off"
PaymentMethodConfigurationGopayDisplayPreferencePreferenceOn PaymentMethodConfigurationGopayDisplayPreferencePreference = "on"
)
// The effective display preference value.
type PaymentMethodConfigurationGopayDisplayPreferenceValue string
// List of values that PaymentMethodConfigurationGopayDisplayPreferenceValue can take
const (
PaymentMethodConfigurationGopayDisplayPreferenceValueOff PaymentMethodConfigurationGopayDisplayPreferenceValue = "off"
PaymentMethodConfigurationGopayDisplayPreferenceValueOn PaymentMethodConfigurationGopayDisplayPreferenceValue = "on"
)
// The account's display preference.
type PaymentMethodConfigurationGrabpayDisplayPreferencePreference string
// List of values that PaymentMethodConfigurationGrabpayDisplayPreferencePreference can take
const (
PaymentMethodConfigurationGrabpayDisplayPreferencePreferenceNone PaymentMethodConfigurationGrabpayDisplayPreferencePreference = "none"
PaymentMethodConfigurationGrabpayDisplayPreferencePreferenceOff PaymentMethodConfigurationGrabpayDisplayPreferencePreference = "off"
PaymentMethodConfigurationGrabpayDisplayPreferencePreferenceOn PaymentMethodConfigurationGrabpayDisplayPreferencePreference = "on"
)
// The effective display preference value.
type PaymentMethodConfigurationGrabpayDisplayPreferenceValue string
// List of values that PaymentMethodConfigurationGrabpayDisplayPreferenceValue can take
const (
PaymentMethodConfigurationGrabpayDisplayPreferenceValueOff PaymentMethodConfigurationGrabpayDisplayPreferenceValue = "off"
PaymentMethodConfigurationGrabpayDisplayPreferenceValueOn PaymentMethodConfigurationGrabpayDisplayPreferenceValue = "on"
)
// The account's display preference.
type PaymentMethodConfigurationIDBankTransferDisplayPreferencePreference string
// List of values that PaymentMethodConfigurationIDBankTransferDisplayPreferencePreference can take
const (
PaymentMethodConfigurationIDBankTransferDisplayPreferencePreferenceNone PaymentMethodConfigurationIDBankTransferDisplayPreferencePreference = "none"
PaymentMethodConfigurationIDBankTransferDisplayPreferencePreferenceOff PaymentMethodConfigurationIDBankTransferDisplayPreferencePreference = "off"
PaymentMethodConfigurationIDBankTransferDisplayPreferencePreferenceOn PaymentMethodConfigurationIDBankTransferDisplayPreferencePreference = "on"
)
// The effective display preference value.
type PaymentMethodConfigurationIDBankTransferDisplayPreferenceValue string
// List of values that PaymentMethodConfigurationIDBankTransferDisplayPreferenceValue can take
const (
PaymentMethodConfigurationIDBankTransferDisplayPreferenceValueOff PaymentMethodConfigurationIDBankTransferDisplayPreferenceValue = "off"
PaymentMethodConfigurationIDBankTransferDisplayPreferenceValueOn PaymentMethodConfigurationIDBankTransferDisplayPreferenceValue = "on"
)
// The account's display preference.
type PaymentMethodConfigurationIDEALDisplayPreferencePreference string
// List of values that PaymentMethodConfigurationIDEALDisplayPreferencePreference can take
const (
PaymentMethodConfigurationIDEALDisplayPreferencePreferenceNone PaymentMethodConfigurationIDEALDisplayPreferencePreference = "none"
PaymentMethodConfigurationIDEALDisplayPreferencePreferenceOff PaymentMethodConfigurationIDEALDisplayPreferencePreference = "off"
PaymentMethodConfigurationIDEALDisplayPreferencePreferenceOn PaymentMethodConfigurationIDEALDisplayPreferencePreference = "on"
)
// The effective display preference value.
type PaymentMethodConfigurationIDEALDisplayPreferenceValue string
// List of values that PaymentMethodConfigurationIDEALDisplayPreferenceValue can take
const (
PaymentMethodConfigurationIDEALDisplayPreferenceValueOff PaymentMethodConfigurationIDEALDisplayPreferenceValue = "off"
PaymentMethodConfigurationIDEALDisplayPreferenceValueOn PaymentMethodConfigurationIDEALDisplayPreferenceValue = "on"
)
// The account's display preference.
type PaymentMethodConfigurationJCBDisplayPreferencePreference string
// List of values that PaymentMethodConfigurationJCBDisplayPreferencePreference can take
const (
PaymentMethodConfigurationJCBDisplayPreferencePreferenceNone PaymentMethodConfigurationJCBDisplayPreferencePreference = "none"
PaymentMethodConfigurationJCBDisplayPreferencePreferenceOff PaymentMethodConfigurationJCBDisplayPreferencePreference = "off"
PaymentMethodConfigurationJCBDisplayPreferencePreferenceOn PaymentMethodConfigurationJCBDisplayPreferencePreference = "on"
)
// The effective display preference value.
type PaymentMethodConfigurationJCBDisplayPreferenceValue string
// List of values that PaymentMethodConfigurationJCBDisplayPreferenceValue can take
const (
PaymentMethodConfigurationJCBDisplayPreferenceValueOff PaymentMethodConfigurationJCBDisplayPreferenceValue = "off"
PaymentMethodConfigurationJCBDisplayPreferenceValueOn PaymentMethodConfigurationJCBDisplayPreferenceValue = "on"
)
// The account's display preference.
type PaymentMethodConfigurationKlarnaDisplayPreferencePreference string
// List of values that PaymentMethodConfigurationKlarnaDisplayPreferencePreference can take
const (
PaymentMethodConfigurationKlarnaDisplayPreferencePreferenceNone PaymentMethodConfigurationKlarnaDisplayPreferencePreference = "none"
PaymentMethodConfigurationKlarnaDisplayPreferencePreferenceOff PaymentMethodConfigurationKlarnaDisplayPreferencePreference = "off"
PaymentMethodConfigurationKlarnaDisplayPreferencePreferenceOn PaymentMethodConfigurationKlarnaDisplayPreferencePreference = "on"
)
// The effective display preference value.
type PaymentMethodConfigurationKlarnaDisplayPreferenceValue string
// List of values that PaymentMethodConfigurationKlarnaDisplayPreferenceValue can take
const (
PaymentMethodConfigurationKlarnaDisplayPreferenceValueOff PaymentMethodConfigurationKlarnaDisplayPreferenceValue = "off"
PaymentMethodConfigurationKlarnaDisplayPreferenceValueOn PaymentMethodConfigurationKlarnaDisplayPreferenceValue = "on"
)
// The account's display preference.
type PaymentMethodConfigurationKonbiniDisplayPreferencePreference string
// List of values that PaymentMethodConfigurationKonbiniDisplayPreferencePreference can take
const (
PaymentMethodConfigurationKonbiniDisplayPreferencePreferenceNone PaymentMethodConfigurationKonbiniDisplayPreferencePreference = "none"
PaymentMethodConfigurationKonbiniDisplayPreferencePreferenceOff PaymentMethodConfigurationKonbiniDisplayPreferencePreference = "off"
PaymentMethodConfigurationKonbiniDisplayPreferencePreferenceOn PaymentMethodConfigurationKonbiniDisplayPreferencePreference = "on"
)
// The effective display preference value.
type PaymentMethodConfigurationKonbiniDisplayPreferenceValue string
// List of values that PaymentMethodConfigurationKonbiniDisplayPreferenceValue can take
const (
PaymentMethodConfigurationKonbiniDisplayPreferenceValueOff PaymentMethodConfigurationKonbiniDisplayPreferenceValue = "off"
PaymentMethodConfigurationKonbiniDisplayPreferenceValueOn PaymentMethodConfigurationKonbiniDisplayPreferenceValue = "on"
)
// The account's display preference.
type PaymentMethodConfigurationLinkDisplayPreferencePreference string
// List of values that PaymentMethodConfigurationLinkDisplayPreferencePreference can take
const (
PaymentMethodConfigurationLinkDisplayPreferencePreferenceNone PaymentMethodConfigurationLinkDisplayPreferencePreference = "none"
PaymentMethodConfigurationLinkDisplayPreferencePreferenceOff PaymentMethodConfigurationLinkDisplayPreferencePreference = "off"
PaymentMethodConfigurationLinkDisplayPreferencePreferenceOn PaymentMethodConfigurationLinkDisplayPreferencePreference = "on"
)
// The effective display preference value.
type PaymentMethodConfigurationLinkDisplayPreferenceValue string
// List of values that PaymentMethodConfigurationLinkDisplayPreferenceValue can take
const (
PaymentMethodConfigurationLinkDisplayPreferenceValueOff PaymentMethodConfigurationLinkDisplayPreferenceValue = "off"
PaymentMethodConfigurationLinkDisplayPreferenceValueOn PaymentMethodConfigurationLinkDisplayPreferenceValue = "on"
)
// The account's display preference.
type PaymentMethodConfigurationMobilepayDisplayPreferencePreference string
// List of values that PaymentMethodConfigurationMobilepayDisplayPreferencePreference can take
const (
PaymentMethodConfigurationMobilepayDisplayPreferencePreferenceNone PaymentMethodConfigurationMobilepayDisplayPreferencePreference = "none"
PaymentMethodConfigurationMobilepayDisplayPreferencePreferenceOff PaymentMethodConfigurationMobilepayDisplayPreferencePreference = "off"
PaymentMethodConfigurationMobilepayDisplayPreferencePreferenceOn PaymentMethodConfigurationMobilepayDisplayPreferencePreference = "on"
)
// The effective display preference value.
type PaymentMethodConfigurationMobilepayDisplayPreferenceValue string
// List of values that PaymentMethodConfigurationMobilepayDisplayPreferenceValue can take
const (
PaymentMethodConfigurationMobilepayDisplayPreferenceValueOff PaymentMethodConfigurationMobilepayDisplayPreferenceValue = "off"
PaymentMethodConfigurationMobilepayDisplayPreferenceValueOn PaymentMethodConfigurationMobilepayDisplayPreferenceValue = "on"
)
// The account's display preference.
type PaymentMethodConfigurationMultibancoDisplayPreferencePreference string
// List of values that PaymentMethodConfigurationMultibancoDisplayPreferencePreference can take
const (
PaymentMethodConfigurationMultibancoDisplayPreferencePreferenceNone PaymentMethodConfigurationMultibancoDisplayPreferencePreference = "none"
PaymentMethodConfigurationMultibancoDisplayPreferencePreferenceOff PaymentMethodConfigurationMultibancoDisplayPreferencePreference = "off"
PaymentMethodConfigurationMultibancoDisplayPreferencePreferenceOn PaymentMethodConfigurationMultibancoDisplayPreferencePreference = "on"
)
// The effective display preference value.
type PaymentMethodConfigurationMultibancoDisplayPreferenceValue string
// List of values that PaymentMethodConfigurationMultibancoDisplayPreferenceValue can take
const (
PaymentMethodConfigurationMultibancoDisplayPreferenceValueOff PaymentMethodConfigurationMultibancoDisplayPreferenceValue = "off"
PaymentMethodConfigurationMultibancoDisplayPreferenceValueOn PaymentMethodConfigurationMultibancoDisplayPreferenceValue = "on"
)
// The account's display preference.
type PaymentMethodConfigurationOXXODisplayPreferencePreference string
// List of values that PaymentMethodConfigurationOXXODisplayPreferencePreference can take
const (
PaymentMethodConfigurationOXXODisplayPreferencePreferenceNone PaymentMethodConfigurationOXXODisplayPreferencePreference = "none"
PaymentMethodConfigurationOXXODisplayPreferencePreferenceOff PaymentMethodConfigurationOXXODisplayPreferencePreference = "off"
PaymentMethodConfigurationOXXODisplayPreferencePreferenceOn PaymentMethodConfigurationOXXODisplayPreferencePreference = "on"
)
// The effective display preference value.
type PaymentMethodConfigurationOXXODisplayPreferenceValue string
// List of values that PaymentMethodConfigurationOXXODisplayPreferenceValue can take
const (
PaymentMethodConfigurationOXXODisplayPreferenceValueOff PaymentMethodConfigurationOXXODisplayPreferenceValue = "off"
PaymentMethodConfigurationOXXODisplayPreferenceValueOn PaymentMethodConfigurationOXXODisplayPreferenceValue = "on"
)
// The account's display preference.
type PaymentMethodConfigurationP24DisplayPreferencePreference string
// List of values that PaymentMethodConfigurationP24DisplayPreferencePreference can take
const (
PaymentMethodConfigurationP24DisplayPreferencePreferenceNone PaymentMethodConfigurationP24DisplayPreferencePreference = "none"
PaymentMethodConfigurationP24DisplayPreferencePreferenceOff PaymentMethodConfigurationP24DisplayPreferencePreference = "off"
PaymentMethodConfigurationP24DisplayPreferencePreferenceOn PaymentMethodConfigurationP24DisplayPreferencePreference = "on"
)
// The effective display preference value.
type PaymentMethodConfigurationP24DisplayPreferenceValue string
// List of values that PaymentMethodConfigurationP24DisplayPreferenceValue can take
const (
PaymentMethodConfigurationP24DisplayPreferenceValueOff PaymentMethodConfigurationP24DisplayPreferenceValue = "off"
PaymentMethodConfigurationP24DisplayPreferenceValueOn PaymentMethodConfigurationP24DisplayPreferenceValue = "on"
)
// The account's display preference.
type PaymentMethodConfigurationPayByBankDisplayPreferencePreference string
// List of values that PaymentMethodConfigurationPayByBankDisplayPreferencePreference can take
const (
PaymentMethodConfigurationPayByBankDisplayPreferencePreferenceNone PaymentMethodConfigurationPayByBankDisplayPreferencePreference = "none"
PaymentMethodConfigurationPayByBankDisplayPreferencePreferenceOff PaymentMethodConfigurationPayByBankDisplayPreferencePreference = "off"
PaymentMethodConfigurationPayByBankDisplayPreferencePreferenceOn PaymentMethodConfigurationPayByBankDisplayPreferencePreference = "on"
)
// The effective display preference value.
type PaymentMethodConfigurationPayByBankDisplayPreferenceValue string
// List of values that PaymentMethodConfigurationPayByBankDisplayPreferenceValue can take
const (
PaymentMethodConfigurationPayByBankDisplayPreferenceValueOff PaymentMethodConfigurationPayByBankDisplayPreferenceValue = "off"
PaymentMethodConfigurationPayByBankDisplayPreferenceValueOn PaymentMethodConfigurationPayByBankDisplayPreferenceValue = "on"
)
// The account's display preference.
type PaymentMethodConfigurationPayNowDisplayPreferencePreference string
// List of values that PaymentMethodConfigurationPayNowDisplayPreferencePreference can take
const (
PaymentMethodConfigurationPayNowDisplayPreferencePreferenceNone PaymentMethodConfigurationPayNowDisplayPreferencePreference = "none"
PaymentMethodConfigurationPayNowDisplayPreferencePreferenceOff PaymentMethodConfigurationPayNowDisplayPreferencePreference = "off"
PaymentMethodConfigurationPayNowDisplayPreferencePreferenceOn PaymentMethodConfigurationPayNowDisplayPreferencePreference = "on"
)
// The effective display preference value.
type PaymentMethodConfigurationPayNowDisplayPreferenceValue string
// List of values that PaymentMethodConfigurationPayNowDisplayPreferenceValue can take
const (
PaymentMethodConfigurationPayNowDisplayPreferenceValueOff PaymentMethodConfigurationPayNowDisplayPreferenceValue = "off"
PaymentMethodConfigurationPayNowDisplayPreferenceValueOn PaymentMethodConfigurationPayNowDisplayPreferenceValue = "on"
)
// The account's display preference.
type PaymentMethodConfigurationPaypalDisplayPreferencePreference string
// List of values that PaymentMethodConfigurationPaypalDisplayPreferencePreference can take
const (
PaymentMethodConfigurationPaypalDisplayPreferencePreferenceNone PaymentMethodConfigurationPaypalDisplayPreferencePreference = "none"
PaymentMethodConfigurationPaypalDisplayPreferencePreferenceOff PaymentMethodConfigurationPaypalDisplayPreferencePreference = "off"
PaymentMethodConfigurationPaypalDisplayPreferencePreferenceOn PaymentMethodConfigurationPaypalDisplayPreferencePreference = "on"
)
// The effective display preference value.
type PaymentMethodConfigurationPaypalDisplayPreferenceValue string
// List of values that PaymentMethodConfigurationPaypalDisplayPreferenceValue can take
const (
PaymentMethodConfigurationPaypalDisplayPreferenceValueOff PaymentMethodConfigurationPaypalDisplayPreferenceValue = "off"
PaymentMethodConfigurationPaypalDisplayPreferenceValueOn PaymentMethodConfigurationPaypalDisplayPreferenceValue = "on"
)
// The account's display preference.
type PaymentMethodConfigurationPaytoDisplayPreferencePreference string
// List of values that PaymentMethodConfigurationPaytoDisplayPreferencePreference can take
const (
PaymentMethodConfigurationPaytoDisplayPreferencePreferenceNone PaymentMethodConfigurationPaytoDisplayPreferencePreference = "none"
PaymentMethodConfigurationPaytoDisplayPreferencePreferenceOff PaymentMethodConfigurationPaytoDisplayPreferencePreference = "off"
PaymentMethodConfigurationPaytoDisplayPreferencePreferenceOn PaymentMethodConfigurationPaytoDisplayPreferencePreference = "on"
)
// The effective display preference value.
type PaymentMethodConfigurationPaytoDisplayPreferenceValue string
// List of values that PaymentMethodConfigurationPaytoDisplayPreferenceValue can take
const (
PaymentMethodConfigurationPaytoDisplayPreferenceValueOff PaymentMethodConfigurationPaytoDisplayPreferenceValue = "off"
PaymentMethodConfigurationPaytoDisplayPreferenceValueOn PaymentMethodConfigurationPaytoDisplayPreferenceValue = "on"
)
// The account's display preference.
type PaymentMethodConfigurationPromptPayDisplayPreferencePreference string
// List of values that PaymentMethodConfigurationPromptPayDisplayPreferencePreference can take
const (
PaymentMethodConfigurationPromptPayDisplayPreferencePreferenceNone PaymentMethodConfigurationPromptPayDisplayPreferencePreference = "none"
PaymentMethodConfigurationPromptPayDisplayPreferencePreferenceOff PaymentMethodConfigurationPromptPayDisplayPreferencePreference = "off"
PaymentMethodConfigurationPromptPayDisplayPreferencePreferenceOn PaymentMethodConfigurationPromptPayDisplayPreferencePreference = "on"
)
// The effective display preference value.
type PaymentMethodConfigurationPromptPayDisplayPreferenceValue string
// List of values that PaymentMethodConfigurationPromptPayDisplayPreferenceValue can take
const (
PaymentMethodConfigurationPromptPayDisplayPreferenceValueOff PaymentMethodConfigurationPromptPayDisplayPreferenceValue = "off"
PaymentMethodConfigurationPromptPayDisplayPreferenceValueOn PaymentMethodConfigurationPromptPayDisplayPreferenceValue = "on"
)
// The account's display preference.
type PaymentMethodConfigurationQrisDisplayPreferencePreference string
// List of values that PaymentMethodConfigurationQrisDisplayPreferencePreference can take
const (
PaymentMethodConfigurationQrisDisplayPreferencePreferenceNone PaymentMethodConfigurationQrisDisplayPreferencePreference = "none"
PaymentMethodConfigurationQrisDisplayPreferencePreferenceOff PaymentMethodConfigurationQrisDisplayPreferencePreference = "off"
PaymentMethodConfigurationQrisDisplayPreferencePreferenceOn PaymentMethodConfigurationQrisDisplayPreferencePreference = "on"
)
// The effective display preference value.
type PaymentMethodConfigurationQrisDisplayPreferenceValue string
// List of values that PaymentMethodConfigurationQrisDisplayPreferenceValue can take
const (
PaymentMethodConfigurationQrisDisplayPreferenceValueOff PaymentMethodConfigurationQrisDisplayPreferenceValue = "off"
PaymentMethodConfigurationQrisDisplayPreferenceValueOn PaymentMethodConfigurationQrisDisplayPreferenceValue = "on"
)
// The account's display preference.
type PaymentMethodConfigurationRevolutPayDisplayPreferencePreference string
// List of values that PaymentMethodConfigurationRevolutPayDisplayPreferencePreference can take
const (
PaymentMethodConfigurationRevolutPayDisplayPreferencePreferenceNone PaymentMethodConfigurationRevolutPayDisplayPreferencePreference = "none"
PaymentMethodConfigurationRevolutPayDisplayPreferencePreferenceOff PaymentMethodConfigurationRevolutPayDisplayPreferencePreference = "off"
PaymentMethodConfigurationRevolutPayDisplayPreferencePreferenceOn PaymentMethodConfigurationRevolutPayDisplayPreferencePreference = "on"
)
// The effective display preference value.
type PaymentMethodConfigurationRevolutPayDisplayPreferenceValue string
// List of values that PaymentMethodConfigurationRevolutPayDisplayPreferenceValue can take
const (
PaymentMethodConfigurationRevolutPayDisplayPreferenceValueOff PaymentMethodConfigurationRevolutPayDisplayPreferenceValue = "off"
PaymentMethodConfigurationRevolutPayDisplayPreferenceValueOn PaymentMethodConfigurationRevolutPayDisplayPreferenceValue = "on"
)
// The account's display preference.
type PaymentMethodConfigurationSEPADebitDisplayPreferencePreference string
// List of values that PaymentMethodConfigurationSEPADebitDisplayPreferencePreference can take
const (
PaymentMethodConfigurationSEPADebitDisplayPreferencePreferenceNone PaymentMethodConfigurationSEPADebitDisplayPreferencePreference = "none"
PaymentMethodConfigurationSEPADebitDisplayPreferencePreferenceOff PaymentMethodConfigurationSEPADebitDisplayPreferencePreference = "off"
PaymentMethodConfigurationSEPADebitDisplayPreferencePreferenceOn PaymentMethodConfigurationSEPADebitDisplayPreferencePreference = "on"
)
// The effective display preference value.
type PaymentMethodConfigurationSEPADebitDisplayPreferenceValue string
// List of values that PaymentMethodConfigurationSEPADebitDisplayPreferenceValue can take
const (
PaymentMethodConfigurationSEPADebitDisplayPreferenceValueOff PaymentMethodConfigurationSEPADebitDisplayPreferenceValue = "off"
PaymentMethodConfigurationSEPADebitDisplayPreferenceValueOn PaymentMethodConfigurationSEPADebitDisplayPreferenceValue = "on"
)
// The account's display preference.
type PaymentMethodConfigurationShopeepayDisplayPreferencePreference string
// List of values that PaymentMethodConfigurationShopeepayDisplayPreferencePreference can take
const (
PaymentMethodConfigurationShopeepayDisplayPreferencePreferenceNone PaymentMethodConfigurationShopeepayDisplayPreferencePreference = "none"
PaymentMethodConfigurationShopeepayDisplayPreferencePreferenceOff PaymentMethodConfigurationShopeepayDisplayPreferencePreference = "off"
PaymentMethodConfigurationShopeepayDisplayPreferencePreferenceOn PaymentMethodConfigurationShopeepayDisplayPreferencePreference = "on"
)
// The effective display preference value.
type PaymentMethodConfigurationShopeepayDisplayPreferenceValue string
// List of values that PaymentMethodConfigurationShopeepayDisplayPreferenceValue can take
const (
PaymentMethodConfigurationShopeepayDisplayPreferenceValueOff PaymentMethodConfigurationShopeepayDisplayPreferenceValue = "off"
PaymentMethodConfigurationShopeepayDisplayPreferenceValueOn PaymentMethodConfigurationShopeepayDisplayPreferenceValue = "on"
)
// The account's display preference.
type PaymentMethodConfigurationSofortDisplayPreferencePreference string
// List of values that PaymentMethodConfigurationSofortDisplayPreferencePreference can take
const (
PaymentMethodConfigurationSofortDisplayPreferencePreferenceNone PaymentMethodConfigurationSofortDisplayPreferencePreference = "none"
PaymentMethodConfigurationSofortDisplayPreferencePreferenceOff PaymentMethodConfigurationSofortDisplayPreferencePreference = "off"
PaymentMethodConfigurationSofortDisplayPreferencePreferenceOn PaymentMethodConfigurationSofortDisplayPreferencePreference = "on"
)
// The effective display preference value.
type PaymentMethodConfigurationSofortDisplayPreferenceValue string
// List of values that PaymentMethodConfigurationSofortDisplayPreferenceValue can take
const (
PaymentMethodConfigurationSofortDisplayPreferenceValueOff PaymentMethodConfigurationSofortDisplayPreferenceValue = "off"
PaymentMethodConfigurationSofortDisplayPreferenceValueOn PaymentMethodConfigurationSofortDisplayPreferenceValue = "on"
)
// The account's display preference.
type PaymentMethodConfigurationSwishDisplayPreferencePreference string
// List of values that PaymentMethodConfigurationSwishDisplayPreferencePreference can take
const (
PaymentMethodConfigurationSwishDisplayPreferencePreferenceNone PaymentMethodConfigurationSwishDisplayPreferencePreference = "none"
PaymentMethodConfigurationSwishDisplayPreferencePreferenceOff PaymentMethodConfigurationSwishDisplayPreferencePreference = "off"
PaymentMethodConfigurationSwishDisplayPreferencePreferenceOn PaymentMethodConfigurationSwishDisplayPreferencePreference = "on"
)
// The effective display preference value.
type PaymentMethodConfigurationSwishDisplayPreferenceValue string
// List of values that PaymentMethodConfigurationSwishDisplayPreferenceValue can take
const (
PaymentMethodConfigurationSwishDisplayPreferenceValueOff PaymentMethodConfigurationSwishDisplayPreferenceValue = "off"
PaymentMethodConfigurationSwishDisplayPreferenceValueOn PaymentMethodConfigurationSwishDisplayPreferenceValue = "on"
)
// The account's display preference.
type PaymentMethodConfigurationTWINTDisplayPreferencePreference string
// List of values that PaymentMethodConfigurationTWINTDisplayPreferencePreference can take
const (
PaymentMethodConfigurationTWINTDisplayPreferencePreferenceNone PaymentMethodConfigurationTWINTDisplayPreferencePreference = "none"
PaymentMethodConfigurationTWINTDisplayPreferencePreferenceOff PaymentMethodConfigurationTWINTDisplayPreferencePreference = "off"
PaymentMethodConfigurationTWINTDisplayPreferencePreferenceOn PaymentMethodConfigurationTWINTDisplayPreferencePreference = "on"
)
// The effective display preference value.
type PaymentMethodConfigurationTWINTDisplayPreferenceValue string
// List of values that PaymentMethodConfigurationTWINTDisplayPreferenceValue can take
const (
PaymentMethodConfigurationTWINTDisplayPreferenceValueOff PaymentMethodConfigurationTWINTDisplayPreferenceValue = "off"
PaymentMethodConfigurationTWINTDisplayPreferenceValueOn PaymentMethodConfigurationTWINTDisplayPreferenceValue = "on"
)
// The account's display preference.
type PaymentMethodConfigurationUSBankAccountDisplayPreferencePreference string
// List of values that PaymentMethodConfigurationUSBankAccountDisplayPreferencePreference can take
const (
PaymentMethodConfigurationUSBankAccountDisplayPreferencePreferenceNone PaymentMethodConfigurationUSBankAccountDisplayPreferencePreference = "none"
PaymentMethodConfigurationUSBankAccountDisplayPreferencePreferenceOff PaymentMethodConfigurationUSBankAccountDisplayPreferencePreference = "off"
PaymentMethodConfigurationUSBankAccountDisplayPreferencePreferenceOn PaymentMethodConfigurationUSBankAccountDisplayPreferencePreference = "on"
)
// The effective display preference value.
type PaymentMethodConfigurationUSBankAccountDisplayPreferenceValue string
// List of values that PaymentMethodConfigurationUSBankAccountDisplayPreferenceValue can take
const (
PaymentMethodConfigurationUSBankAccountDisplayPreferenceValueOff PaymentMethodConfigurationUSBankAccountDisplayPreferenceValue = "off"
PaymentMethodConfigurationUSBankAccountDisplayPreferenceValueOn PaymentMethodConfigurationUSBankAccountDisplayPreferenceValue = "on"
)
// The account's display preference.
type PaymentMethodConfigurationWeChatPayDisplayPreferencePreference string
// List of values that PaymentMethodConfigurationWeChatPayDisplayPreferencePreference can take
const (
PaymentMethodConfigurationWeChatPayDisplayPreferencePreferenceNone PaymentMethodConfigurationWeChatPayDisplayPreferencePreference = "none"
PaymentMethodConfigurationWeChatPayDisplayPreferencePreferenceOff PaymentMethodConfigurationWeChatPayDisplayPreferencePreference = "off"
PaymentMethodConfigurationWeChatPayDisplayPreferencePreferenceOn PaymentMethodConfigurationWeChatPayDisplayPreferencePreference = "on"
)
// The effective display preference value.
type PaymentMethodConfigurationWeChatPayDisplayPreferenceValue string
// List of values that PaymentMethodConfigurationWeChatPayDisplayPreferenceValue can take
const (
PaymentMethodConfigurationWeChatPayDisplayPreferenceValueOff PaymentMethodConfigurationWeChatPayDisplayPreferenceValue = "off"
PaymentMethodConfigurationWeChatPayDisplayPreferenceValueOn PaymentMethodConfigurationWeChatPayDisplayPreferenceValue = "on"
)
// The account's display preference.
type PaymentMethodConfigurationZipDisplayPreferencePreference string
// List of values that PaymentMethodConfigurationZipDisplayPreferencePreference can take
const (
PaymentMethodConfigurationZipDisplayPreferencePreferenceNone PaymentMethodConfigurationZipDisplayPreferencePreference = "none"
PaymentMethodConfigurationZipDisplayPreferencePreferenceOff PaymentMethodConfigurationZipDisplayPreferencePreference = "off"
PaymentMethodConfigurationZipDisplayPreferencePreferenceOn PaymentMethodConfigurationZipDisplayPreferencePreference = "on"
)
// The effective display preference value.
type PaymentMethodConfigurationZipDisplayPreferenceValue string
// List of values that PaymentMethodConfigurationZipDisplayPreferenceValue can take
const (
PaymentMethodConfigurationZipDisplayPreferenceValueOff PaymentMethodConfigurationZipDisplayPreferenceValue = "off"
PaymentMethodConfigurationZipDisplayPreferenceValueOn PaymentMethodConfigurationZipDisplayPreferenceValue = "on"
)
// List payment method configurations
type PaymentMethodConfigurationListParams struct {
ListParams `form:"*"`
// The Connect application to filter by.
Application *string `form:"application"`
// Specifies which fields in the response should be expanded.
Expand []*string `form:"expand"`
}
// AddExpand appends a new field to expand.
func (p *PaymentMethodConfigurationListParams) AddExpand(f string) {
p.Expand = append(p.Expand, &f)
}
// Whether or not the payment method should be displayed.
type PaymentMethodConfigurationACSSDebitDisplayPreferenceParams struct {
// The account's preference for whether or not to display this payment method.
Preference *string `form:"preference"`
}
// Canadian pre-authorized debit payments, check this [page](https://stripe.com/docs/payments/acss-debit) for more details like country availability.
type PaymentMethodConfigurationACSSDebitParams struct {
// Whether or not the payment method should be displayed.
DisplayPreference *PaymentMethodConfigurationACSSDebitDisplayPreferenceParams `form:"display_preference"`
}
// Whether or not the payment method should be displayed.
type PaymentMethodConfigurationAffirmDisplayPreferenceParams struct {
// The account's preference for whether or not to display this payment method.
Preference *string `form:"preference"`
}
// [Affirm](https://www.affirm.com/) gives your customers a way to split purchases over a series of payments. Depending on the purchase, they can pay with four interest-free payments (Split Pay) or pay over a longer term (Installments), which might include interest. Check this [page](https://stripe.com/docs/payments/affirm) for more details like country availability.
type PaymentMethodConfigurationAffirmParams struct {
// Whether or not the payment method should be displayed.
DisplayPreference *PaymentMethodConfigurationAffirmDisplayPreferenceParams `form:"display_preference"`
}
// Whether or not the payment method should be displayed.
type PaymentMethodConfigurationAfterpayClearpayDisplayPreferenceParams struct {
// The account's preference for whether or not to display this payment method.
Preference *string `form:"preference"`
}
// Afterpay gives your customers a way to pay for purchases in installments, check this [page](https://stripe.com/docs/payments/afterpay-clearpay) for more details like country availability. Afterpay is particularly popular among businesses selling fashion, beauty, and sports products.
type PaymentMethodConfigurationAfterpayClearpayParams struct {
// Whether or not the payment method should be displayed.
DisplayPreference *PaymentMethodConfigurationAfterpayClearpayDisplayPreferenceParams `form:"display_preference"`
}
// Whether or not the payment method should be displayed.
type PaymentMethodConfigurationAlipayDisplayPreferenceParams struct {
// The account's preference for whether or not to display this payment method.
Preference *string `form:"preference"`
}
// Alipay is a digital wallet in China that has more than a billion active users worldwide. Alipay users can pay on the web or on a mobile device using login credentials or their Alipay app. Alipay has a low dispute rate and reduces fraud by authenticating payments using the customer's login credentials. Check this [page](https://stripe.com/docs/payments/alipay) for more details.
type PaymentMethodConfigurationAlipayParams struct {
// Whether or not the payment method should be displayed.
DisplayPreference *PaymentMethodConfigurationAlipayDisplayPreferenceParams `form:"display_preference"`
}
// Whether or not the payment method should be displayed.
type PaymentMethodConfigurationAlmaDisplayPreferenceParams struct {
// The account's preference for whether or not to display this payment method.
Preference *string `form:"preference"`
}
// Alma is a Buy Now, Pay Later payment method that offers customers the ability to pay in 2, 3, or 4 installments.
type PaymentMethodConfigurationAlmaParams struct {
// Whether or not the payment method should be displayed.
DisplayPreference *PaymentMethodConfigurationAlmaDisplayPreferenceParams `form:"display_preference"`
}
// Whether or not the payment method should be displayed.
type PaymentMethodConfigurationAmazonPayDisplayPreferenceParams struct {
// The account's preference for whether or not to display this payment method.
Preference *string `form:"preference"`
}
// Amazon Pay is a wallet payment method that lets your customers check out the same way as on Amazon.
type PaymentMethodConfigurationAmazonPayParams struct {
// Whether or not the payment method should be displayed.
DisplayPreference *PaymentMethodConfigurationAmazonPayDisplayPreferenceParams `form:"display_preference"`
}
// Whether or not the payment method should be displayed.
type PaymentMethodConfigurationApplePayDisplayPreferenceParams struct {
// The account's preference for whether or not to display this payment method.
Preference *string `form:"preference"`
}
// Stripe users can accept [Apple Pay](https://stripe.com/payments/apple-pay) in iOS applications in iOS 9 and later, and on the web in Safari starting with iOS 10 or macOS Sierra. There are no additional fees to process Apple Pay payments, and the [pricing](https://stripe.com/pricing) is the same as other card transactions. Check this [page](https://stripe.com/docs/apple-pay) for more details.
type PaymentMethodConfigurationApplePayParams struct {
// Whether or not the payment method should be displayed.
DisplayPreference *PaymentMethodConfigurationApplePayDisplayPreferenceParams `form:"display_preference"`
}
// Whether or not the payment method should be displayed.