increase 1.143.0 → 1.145.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -14,10 +14,6 @@ module Increase
14
14
  )
15
15
  end
16
16
 
17
- # The transfer amount in USD cents. For Card Push transfers, must be positive.
18
- sig { returns(Integer) }
19
- attr_accessor :amount
20
-
21
17
  # The Business Application Identifier describes the type of transaction being
22
18
  # performed. Your program must be approved for the specified Business Application
23
19
  # Identifier in order to use it.
@@ -63,6 +59,20 @@ module Increase
63
59
  sig { returns(String) }
64
60
  attr_accessor :merchant_state
65
61
 
62
+ # The amount to transfer. The receiving bank will convert this to the cardholder's
63
+ # currency. The amount that is applied to your Increase account matches the
64
+ # currency of your account.
65
+ sig { returns(Increase::CardPushTransferCreateParams::PresentmentAmount) }
66
+ attr_reader :presentment_amount
67
+
68
+ sig do
69
+ params(
70
+ presentment_amount:
71
+ Increase::CardPushTransferCreateParams::PresentmentAmount::OrHash
72
+ ).void
73
+ end
74
+ attr_writer :presentment_amount
75
+
66
76
  # The name of the funds recipient.
67
77
  sig { returns(String) }
68
78
  attr_accessor :recipient_name
@@ -100,7 +110,6 @@ module Increase
100
110
 
101
111
  sig do
102
112
  params(
103
- amount: Integer,
104
113
  business_application_identifier:
105
114
  Increase::CardPushTransferCreateParams::BusinessApplicationIdentifier::OrSymbol,
106
115
  card_token_id: String,
@@ -110,6 +119,8 @@ module Increase
110
119
  merchant_name_prefix: String,
111
120
  merchant_postal_code: String,
112
121
  merchant_state: String,
122
+ presentment_amount:
123
+ Increase::CardPushTransferCreateParams::PresentmentAmount::OrHash,
113
124
  recipient_name: String,
114
125
  sender_address_city: String,
115
126
  sender_address_line1: String,
@@ -122,8 +133,6 @@ module Increase
122
133
  ).returns(T.attached_class)
123
134
  end
124
135
  def self.new(
125
- # The transfer amount in USD cents. For Card Push transfers, must be positive.
126
- amount:,
127
136
  # The Business Application Identifier describes the type of transaction being
128
137
  # performed. Your program must be approved for the specified Business Application
129
138
  # Identifier in order to use it.
@@ -149,6 +158,10 @@ module Increase
149
158
  merchant_postal_code:,
150
159
  # The state of the merchant (generally your business) sending the transfer.
151
160
  merchant_state:,
161
+ # The amount to transfer. The receiving bank will convert this to the cardholder's
162
+ # currency. The amount that is applied to your Increase account matches the
163
+ # currency of your account.
164
+ presentment_amount:,
152
165
  # The name of the funds recipient.
153
166
  recipient_name:,
154
167
  # The city of the sender.
@@ -172,7 +185,6 @@ module Increase
172
185
  sig do
173
186
  override.returns(
174
187
  {
175
- amount: Integer,
176
188
  business_application_identifier:
177
189
  Increase::CardPushTransferCreateParams::BusinessApplicationIdentifier::OrSymbol,
178
190
  card_token_id: String,
@@ -182,6 +194,8 @@ module Increase
182
194
  merchant_name_prefix: String,
183
195
  merchant_postal_code: String,
184
196
  merchant_state: String,
197
+ presentment_amount:
198
+ Increase::CardPushTransferCreateParams::PresentmentAmount,
185
199
  recipient_name: String,
186
200
  sender_address_city: String,
187
201
  sender_address_line1: String,
@@ -320,6 +334,1210 @@ module Increase
320
334
  def self.values
321
335
  end
322
336
  end
337
+
338
+ class PresentmentAmount < Increase::Internal::Type::BaseModel
339
+ OrHash =
340
+ T.type_alias do
341
+ T.any(
342
+ Increase::CardPushTransferCreateParams::PresentmentAmount,
343
+ Increase::Internal::AnyHash
344
+ )
345
+ end
346
+
347
+ # The ISO 4217 currency code representing the currency of the amount.
348
+ sig do
349
+ returns(
350
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::OrSymbol
351
+ )
352
+ end
353
+ attr_accessor :currency
354
+
355
+ # The amount value as a decimal string in the currency's major unit. For example,
356
+ # for USD, '1234.56' represents 1234 dollars and 56 cents. For JPY, '1234'
357
+ # represents 1234 yen. A currency with minor units requires at least one decimal
358
+ # place and supports up to the number of decimal places defined by the currency's
359
+ # minor units. A currency without minor units does not support any decimal places.
360
+ sig { returns(String) }
361
+ attr_accessor :value
362
+
363
+ # The amount to transfer. The receiving bank will convert this to the cardholder's
364
+ # currency. The amount that is applied to your Increase account matches the
365
+ # currency of your account.
366
+ sig do
367
+ params(
368
+ currency:
369
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::OrSymbol,
370
+ value: String
371
+ ).returns(T.attached_class)
372
+ end
373
+ def self.new(
374
+ # The ISO 4217 currency code representing the currency of the amount.
375
+ currency:,
376
+ # The amount value as a decimal string in the currency's major unit. For example,
377
+ # for USD, '1234.56' represents 1234 dollars and 56 cents. For JPY, '1234'
378
+ # represents 1234 yen. A currency with minor units requires at least one decimal
379
+ # place and supports up to the number of decimal places defined by the currency's
380
+ # minor units. A currency without minor units does not support any decimal places.
381
+ value:
382
+ )
383
+ end
384
+
385
+ sig do
386
+ override.returns(
387
+ {
388
+ currency:
389
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::OrSymbol,
390
+ value: String
391
+ }
392
+ )
393
+ end
394
+ def to_hash
395
+ end
396
+
397
+ # The ISO 4217 currency code representing the currency of the amount.
398
+ module Currency
399
+ extend Increase::Internal::Type::Enum
400
+
401
+ TaggedSymbol =
402
+ T.type_alias do
403
+ T.all(
404
+ Symbol,
405
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency
406
+ )
407
+ end
408
+ OrSymbol = T.type_alias { T.any(Symbol, String) }
409
+
410
+ # AFN
411
+ AFN =
412
+ T.let(
413
+ :AFN,
414
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
415
+ )
416
+
417
+ # EUR
418
+ EUR =
419
+ T.let(
420
+ :EUR,
421
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
422
+ )
423
+
424
+ # ALL
425
+ ALL =
426
+ T.let(
427
+ :ALL,
428
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
429
+ )
430
+
431
+ # DZD
432
+ DZD =
433
+ T.let(
434
+ :DZD,
435
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
436
+ )
437
+
438
+ # USD
439
+ USD =
440
+ T.let(
441
+ :USD,
442
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
443
+ )
444
+
445
+ # AOA
446
+ AOA =
447
+ T.let(
448
+ :AOA,
449
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
450
+ )
451
+
452
+ # ARS
453
+ ARS =
454
+ T.let(
455
+ :ARS,
456
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
457
+ )
458
+
459
+ # AMD
460
+ AMD =
461
+ T.let(
462
+ :AMD,
463
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
464
+ )
465
+
466
+ # AWG
467
+ AWG =
468
+ T.let(
469
+ :AWG,
470
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
471
+ )
472
+
473
+ # AUD
474
+ AUD =
475
+ T.let(
476
+ :AUD,
477
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
478
+ )
479
+
480
+ # AZN
481
+ AZN =
482
+ T.let(
483
+ :AZN,
484
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
485
+ )
486
+
487
+ # BSD
488
+ BSD =
489
+ T.let(
490
+ :BSD,
491
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
492
+ )
493
+
494
+ # BHD
495
+ BHD =
496
+ T.let(
497
+ :BHD,
498
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
499
+ )
500
+
501
+ # BDT
502
+ BDT =
503
+ T.let(
504
+ :BDT,
505
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
506
+ )
507
+
508
+ # BBD
509
+ BBD =
510
+ T.let(
511
+ :BBD,
512
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
513
+ )
514
+
515
+ # BYN
516
+ BYN =
517
+ T.let(
518
+ :BYN,
519
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
520
+ )
521
+
522
+ # BZD
523
+ BZD =
524
+ T.let(
525
+ :BZD,
526
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
527
+ )
528
+
529
+ # BMD
530
+ BMD =
531
+ T.let(
532
+ :BMD,
533
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
534
+ )
535
+
536
+ # INR
537
+ INR =
538
+ T.let(
539
+ :INR,
540
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
541
+ )
542
+
543
+ # BTN
544
+ BTN =
545
+ T.let(
546
+ :BTN,
547
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
548
+ )
549
+
550
+ # BOB
551
+ BOB =
552
+ T.let(
553
+ :BOB,
554
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
555
+ )
556
+
557
+ # BOV
558
+ BOV =
559
+ T.let(
560
+ :BOV,
561
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
562
+ )
563
+
564
+ # BAM
565
+ BAM =
566
+ T.let(
567
+ :BAM,
568
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
569
+ )
570
+
571
+ # BWP
572
+ BWP =
573
+ T.let(
574
+ :BWP,
575
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
576
+ )
577
+
578
+ # NOK
579
+ NOK =
580
+ T.let(
581
+ :NOK,
582
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
583
+ )
584
+
585
+ # BRL
586
+ BRL =
587
+ T.let(
588
+ :BRL,
589
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
590
+ )
591
+
592
+ # BND
593
+ BND =
594
+ T.let(
595
+ :BND,
596
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
597
+ )
598
+
599
+ # BGN
600
+ BGN =
601
+ T.let(
602
+ :BGN,
603
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
604
+ )
605
+
606
+ # BIF
607
+ BIF =
608
+ T.let(
609
+ :BIF,
610
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
611
+ )
612
+
613
+ # CVE
614
+ CVE =
615
+ T.let(
616
+ :CVE,
617
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
618
+ )
619
+
620
+ # KHR
621
+ KHR =
622
+ T.let(
623
+ :KHR,
624
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
625
+ )
626
+
627
+ # CAD
628
+ CAD =
629
+ T.let(
630
+ :CAD,
631
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
632
+ )
633
+
634
+ # KYD
635
+ KYD =
636
+ T.let(
637
+ :KYD,
638
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
639
+ )
640
+
641
+ # CLP
642
+ CLP =
643
+ T.let(
644
+ :CLP,
645
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
646
+ )
647
+
648
+ # CLF
649
+ CLF =
650
+ T.let(
651
+ :CLF,
652
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
653
+ )
654
+
655
+ # CNY
656
+ CNY =
657
+ T.let(
658
+ :CNY,
659
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
660
+ )
661
+
662
+ # COP
663
+ COP =
664
+ T.let(
665
+ :COP,
666
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
667
+ )
668
+
669
+ # COU
670
+ COU =
671
+ T.let(
672
+ :COU,
673
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
674
+ )
675
+
676
+ # KMF
677
+ KMF =
678
+ T.let(
679
+ :KMF,
680
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
681
+ )
682
+
683
+ # CDF
684
+ CDF =
685
+ T.let(
686
+ :CDF,
687
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
688
+ )
689
+
690
+ # NZD
691
+ NZD =
692
+ T.let(
693
+ :NZD,
694
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
695
+ )
696
+
697
+ # CRC
698
+ CRC =
699
+ T.let(
700
+ :CRC,
701
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
702
+ )
703
+
704
+ # CUP
705
+ CUP =
706
+ T.let(
707
+ :CUP,
708
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
709
+ )
710
+
711
+ # CZK
712
+ CZK =
713
+ T.let(
714
+ :CZK,
715
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
716
+ )
717
+
718
+ # DKK
719
+ DKK =
720
+ T.let(
721
+ :DKK,
722
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
723
+ )
724
+
725
+ # DJF
726
+ DJF =
727
+ T.let(
728
+ :DJF,
729
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
730
+ )
731
+
732
+ # DOP
733
+ DOP =
734
+ T.let(
735
+ :DOP,
736
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
737
+ )
738
+
739
+ # EGP
740
+ EGP =
741
+ T.let(
742
+ :EGP,
743
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
744
+ )
745
+
746
+ # SVC
747
+ SVC =
748
+ T.let(
749
+ :SVC,
750
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
751
+ )
752
+
753
+ # ERN
754
+ ERN =
755
+ T.let(
756
+ :ERN,
757
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
758
+ )
759
+
760
+ # SZL
761
+ SZL =
762
+ T.let(
763
+ :SZL,
764
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
765
+ )
766
+
767
+ # ETB
768
+ ETB =
769
+ T.let(
770
+ :ETB,
771
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
772
+ )
773
+
774
+ # FKP
775
+ FKP =
776
+ T.let(
777
+ :FKP,
778
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
779
+ )
780
+
781
+ # FJD
782
+ FJD =
783
+ T.let(
784
+ :FJD,
785
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
786
+ )
787
+
788
+ # GMD
789
+ GMD =
790
+ T.let(
791
+ :GMD,
792
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
793
+ )
794
+
795
+ # GEL
796
+ GEL =
797
+ T.let(
798
+ :GEL,
799
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
800
+ )
801
+
802
+ # GHS
803
+ GHS =
804
+ T.let(
805
+ :GHS,
806
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
807
+ )
808
+
809
+ # GIP
810
+ GIP =
811
+ T.let(
812
+ :GIP,
813
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
814
+ )
815
+
816
+ # GTQ
817
+ GTQ =
818
+ T.let(
819
+ :GTQ,
820
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
821
+ )
822
+
823
+ # GBP
824
+ GBP =
825
+ T.let(
826
+ :GBP,
827
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
828
+ )
829
+
830
+ # GNF
831
+ GNF =
832
+ T.let(
833
+ :GNF,
834
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
835
+ )
836
+
837
+ # GYD
838
+ GYD =
839
+ T.let(
840
+ :GYD,
841
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
842
+ )
843
+
844
+ # HTG
845
+ HTG =
846
+ T.let(
847
+ :HTG,
848
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
849
+ )
850
+
851
+ # HNL
852
+ HNL =
853
+ T.let(
854
+ :HNL,
855
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
856
+ )
857
+
858
+ # HKD
859
+ HKD =
860
+ T.let(
861
+ :HKD,
862
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
863
+ )
864
+
865
+ # HUF
866
+ HUF =
867
+ T.let(
868
+ :HUF,
869
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
870
+ )
871
+
872
+ # ISK
873
+ ISK =
874
+ T.let(
875
+ :ISK,
876
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
877
+ )
878
+
879
+ # IDR
880
+ IDR =
881
+ T.let(
882
+ :IDR,
883
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
884
+ )
885
+
886
+ # IRR
887
+ IRR =
888
+ T.let(
889
+ :IRR,
890
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
891
+ )
892
+
893
+ # IQD
894
+ IQD =
895
+ T.let(
896
+ :IQD,
897
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
898
+ )
899
+
900
+ # ILS
901
+ ILS =
902
+ T.let(
903
+ :ILS,
904
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
905
+ )
906
+
907
+ # JMD
908
+ JMD =
909
+ T.let(
910
+ :JMD,
911
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
912
+ )
913
+
914
+ # JPY
915
+ JPY =
916
+ T.let(
917
+ :JPY,
918
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
919
+ )
920
+
921
+ # JOD
922
+ JOD =
923
+ T.let(
924
+ :JOD,
925
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
926
+ )
927
+
928
+ # KZT
929
+ KZT =
930
+ T.let(
931
+ :KZT,
932
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
933
+ )
934
+
935
+ # KES
936
+ KES =
937
+ T.let(
938
+ :KES,
939
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
940
+ )
941
+
942
+ # KPW
943
+ KPW =
944
+ T.let(
945
+ :KPW,
946
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
947
+ )
948
+
949
+ # KRW
950
+ KRW =
951
+ T.let(
952
+ :KRW,
953
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
954
+ )
955
+
956
+ # KWD
957
+ KWD =
958
+ T.let(
959
+ :KWD,
960
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
961
+ )
962
+
963
+ # KGS
964
+ KGS =
965
+ T.let(
966
+ :KGS,
967
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
968
+ )
969
+
970
+ # LAK
971
+ LAK =
972
+ T.let(
973
+ :LAK,
974
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
975
+ )
976
+
977
+ # LBP
978
+ LBP =
979
+ T.let(
980
+ :LBP,
981
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
982
+ )
983
+
984
+ # LSL
985
+ LSL =
986
+ T.let(
987
+ :LSL,
988
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
989
+ )
990
+
991
+ # ZAR
992
+ ZAR =
993
+ T.let(
994
+ :ZAR,
995
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
996
+ )
997
+
998
+ # LRD
999
+ LRD =
1000
+ T.let(
1001
+ :LRD,
1002
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1003
+ )
1004
+
1005
+ # LYD
1006
+ LYD =
1007
+ T.let(
1008
+ :LYD,
1009
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1010
+ )
1011
+
1012
+ # CHF
1013
+ CHF =
1014
+ T.let(
1015
+ :CHF,
1016
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1017
+ )
1018
+
1019
+ # MOP
1020
+ MOP =
1021
+ T.let(
1022
+ :MOP,
1023
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1024
+ )
1025
+
1026
+ # MKD
1027
+ MKD =
1028
+ T.let(
1029
+ :MKD,
1030
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1031
+ )
1032
+
1033
+ # MGA
1034
+ MGA =
1035
+ T.let(
1036
+ :MGA,
1037
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1038
+ )
1039
+
1040
+ # MWK
1041
+ MWK =
1042
+ T.let(
1043
+ :MWK,
1044
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1045
+ )
1046
+
1047
+ # MYR
1048
+ MYR =
1049
+ T.let(
1050
+ :MYR,
1051
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1052
+ )
1053
+
1054
+ # MVR
1055
+ MVR =
1056
+ T.let(
1057
+ :MVR,
1058
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1059
+ )
1060
+
1061
+ # MRU
1062
+ MRU =
1063
+ T.let(
1064
+ :MRU,
1065
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1066
+ )
1067
+
1068
+ # MUR
1069
+ MUR =
1070
+ T.let(
1071
+ :MUR,
1072
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1073
+ )
1074
+
1075
+ # MXN
1076
+ MXN =
1077
+ T.let(
1078
+ :MXN,
1079
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1080
+ )
1081
+
1082
+ # MXV
1083
+ MXV =
1084
+ T.let(
1085
+ :MXV,
1086
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1087
+ )
1088
+
1089
+ # MDL
1090
+ MDL =
1091
+ T.let(
1092
+ :MDL,
1093
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1094
+ )
1095
+
1096
+ # MNT
1097
+ MNT =
1098
+ T.let(
1099
+ :MNT,
1100
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1101
+ )
1102
+
1103
+ # MAD
1104
+ MAD =
1105
+ T.let(
1106
+ :MAD,
1107
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1108
+ )
1109
+
1110
+ # MZN
1111
+ MZN =
1112
+ T.let(
1113
+ :MZN,
1114
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1115
+ )
1116
+
1117
+ # MMK
1118
+ MMK =
1119
+ T.let(
1120
+ :MMK,
1121
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1122
+ )
1123
+
1124
+ # NAD
1125
+ NAD =
1126
+ T.let(
1127
+ :NAD,
1128
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1129
+ )
1130
+
1131
+ # NPR
1132
+ NPR =
1133
+ T.let(
1134
+ :NPR,
1135
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1136
+ )
1137
+
1138
+ # NIO
1139
+ NIO =
1140
+ T.let(
1141
+ :NIO,
1142
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1143
+ )
1144
+
1145
+ # NGN
1146
+ NGN =
1147
+ T.let(
1148
+ :NGN,
1149
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1150
+ )
1151
+
1152
+ # OMR
1153
+ OMR =
1154
+ T.let(
1155
+ :OMR,
1156
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1157
+ )
1158
+
1159
+ # PKR
1160
+ PKR =
1161
+ T.let(
1162
+ :PKR,
1163
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1164
+ )
1165
+
1166
+ # PAB
1167
+ PAB =
1168
+ T.let(
1169
+ :PAB,
1170
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1171
+ )
1172
+
1173
+ # PGK
1174
+ PGK =
1175
+ T.let(
1176
+ :PGK,
1177
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1178
+ )
1179
+
1180
+ # PYG
1181
+ PYG =
1182
+ T.let(
1183
+ :PYG,
1184
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1185
+ )
1186
+
1187
+ # PEN
1188
+ PEN =
1189
+ T.let(
1190
+ :PEN,
1191
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1192
+ )
1193
+
1194
+ # PHP
1195
+ PHP =
1196
+ T.let(
1197
+ :PHP,
1198
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1199
+ )
1200
+
1201
+ # PLN
1202
+ PLN =
1203
+ T.let(
1204
+ :PLN,
1205
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1206
+ )
1207
+
1208
+ # QAR
1209
+ QAR =
1210
+ T.let(
1211
+ :QAR,
1212
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1213
+ )
1214
+
1215
+ # RON
1216
+ RON =
1217
+ T.let(
1218
+ :RON,
1219
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1220
+ )
1221
+
1222
+ # RUB
1223
+ RUB =
1224
+ T.let(
1225
+ :RUB,
1226
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1227
+ )
1228
+
1229
+ # RWF
1230
+ RWF =
1231
+ T.let(
1232
+ :RWF,
1233
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1234
+ )
1235
+
1236
+ # SHP
1237
+ SHP =
1238
+ T.let(
1239
+ :SHP,
1240
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1241
+ )
1242
+
1243
+ # WST
1244
+ WST =
1245
+ T.let(
1246
+ :WST,
1247
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1248
+ )
1249
+
1250
+ # STN
1251
+ STN =
1252
+ T.let(
1253
+ :STN,
1254
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1255
+ )
1256
+
1257
+ # SAR
1258
+ SAR =
1259
+ T.let(
1260
+ :SAR,
1261
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1262
+ )
1263
+
1264
+ # RSD
1265
+ RSD =
1266
+ T.let(
1267
+ :RSD,
1268
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1269
+ )
1270
+
1271
+ # SCR
1272
+ SCR =
1273
+ T.let(
1274
+ :SCR,
1275
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1276
+ )
1277
+
1278
+ # SLE
1279
+ SLE =
1280
+ T.let(
1281
+ :SLE,
1282
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1283
+ )
1284
+
1285
+ # SGD
1286
+ SGD =
1287
+ T.let(
1288
+ :SGD,
1289
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1290
+ )
1291
+
1292
+ # SBD
1293
+ SBD =
1294
+ T.let(
1295
+ :SBD,
1296
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1297
+ )
1298
+
1299
+ # SOS
1300
+ SOS =
1301
+ T.let(
1302
+ :SOS,
1303
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1304
+ )
1305
+
1306
+ # SSP
1307
+ SSP =
1308
+ T.let(
1309
+ :SSP,
1310
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1311
+ )
1312
+
1313
+ # LKR
1314
+ LKR =
1315
+ T.let(
1316
+ :LKR,
1317
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1318
+ )
1319
+
1320
+ # SDG
1321
+ SDG =
1322
+ T.let(
1323
+ :SDG,
1324
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1325
+ )
1326
+
1327
+ # SRD
1328
+ SRD =
1329
+ T.let(
1330
+ :SRD,
1331
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1332
+ )
1333
+
1334
+ # SEK
1335
+ SEK =
1336
+ T.let(
1337
+ :SEK,
1338
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1339
+ )
1340
+
1341
+ # CHE
1342
+ CHE =
1343
+ T.let(
1344
+ :CHE,
1345
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1346
+ )
1347
+
1348
+ # CHW
1349
+ CHW =
1350
+ T.let(
1351
+ :CHW,
1352
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1353
+ )
1354
+
1355
+ # SYP
1356
+ SYP =
1357
+ T.let(
1358
+ :SYP,
1359
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1360
+ )
1361
+
1362
+ # TWD
1363
+ TWD =
1364
+ T.let(
1365
+ :TWD,
1366
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1367
+ )
1368
+
1369
+ # TJS
1370
+ TJS =
1371
+ T.let(
1372
+ :TJS,
1373
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1374
+ )
1375
+
1376
+ # TZS
1377
+ TZS =
1378
+ T.let(
1379
+ :TZS,
1380
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1381
+ )
1382
+
1383
+ # THB
1384
+ THB =
1385
+ T.let(
1386
+ :THB,
1387
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1388
+ )
1389
+
1390
+ # TOP
1391
+ TOP =
1392
+ T.let(
1393
+ :TOP,
1394
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1395
+ )
1396
+
1397
+ # TTD
1398
+ TTD =
1399
+ T.let(
1400
+ :TTD,
1401
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1402
+ )
1403
+
1404
+ # TND
1405
+ TND =
1406
+ T.let(
1407
+ :TND,
1408
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1409
+ )
1410
+
1411
+ # TRY
1412
+ TRY =
1413
+ T.let(
1414
+ :TRY,
1415
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1416
+ )
1417
+
1418
+ # TMT
1419
+ TMT =
1420
+ T.let(
1421
+ :TMT,
1422
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1423
+ )
1424
+
1425
+ # UGX
1426
+ UGX =
1427
+ T.let(
1428
+ :UGX,
1429
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1430
+ )
1431
+
1432
+ # UAH
1433
+ UAH =
1434
+ T.let(
1435
+ :UAH,
1436
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1437
+ )
1438
+
1439
+ # AED
1440
+ AED =
1441
+ T.let(
1442
+ :AED,
1443
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1444
+ )
1445
+
1446
+ # USN
1447
+ USN =
1448
+ T.let(
1449
+ :USN,
1450
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1451
+ )
1452
+
1453
+ # UYU
1454
+ UYU =
1455
+ T.let(
1456
+ :UYU,
1457
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1458
+ )
1459
+
1460
+ # UYI
1461
+ UYI =
1462
+ T.let(
1463
+ :UYI,
1464
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1465
+ )
1466
+
1467
+ # UYW
1468
+ UYW =
1469
+ T.let(
1470
+ :UYW,
1471
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1472
+ )
1473
+
1474
+ # UZS
1475
+ UZS =
1476
+ T.let(
1477
+ :UZS,
1478
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1479
+ )
1480
+
1481
+ # VUV
1482
+ VUV =
1483
+ T.let(
1484
+ :VUV,
1485
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1486
+ )
1487
+
1488
+ # VES
1489
+ VES =
1490
+ T.let(
1491
+ :VES,
1492
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1493
+ )
1494
+
1495
+ # VED
1496
+ VED =
1497
+ T.let(
1498
+ :VED,
1499
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1500
+ )
1501
+
1502
+ # VND
1503
+ VND =
1504
+ T.let(
1505
+ :VND,
1506
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1507
+ )
1508
+
1509
+ # YER
1510
+ YER =
1511
+ T.let(
1512
+ :YER,
1513
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1514
+ )
1515
+
1516
+ # ZMW
1517
+ ZMW =
1518
+ T.let(
1519
+ :ZMW,
1520
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1521
+ )
1522
+
1523
+ # ZWG
1524
+ ZWG =
1525
+ T.let(
1526
+ :ZWG,
1527
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1528
+ )
1529
+
1530
+ sig do
1531
+ override.returns(
1532
+ T::Array[
1533
+ Increase::CardPushTransferCreateParams::PresentmentAmount::Currency::TaggedSymbol
1534
+ ]
1535
+ )
1536
+ end
1537
+ def self.values
1538
+ end
1539
+ end
1540
+ end
323
1541
  end
324
1542
  end
325
1543
  end