increase 1.143.0 → 1.144.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.
@@ -28,10 +28,6 @@ module Increase
28
28
  sig { returns(String) }
29
29
  attr_accessor :account_id
30
30
 
31
- # The transfer amount in USD cents.
32
- sig { returns(Integer) }
33
- attr_accessor :amount
34
-
35
31
  # If your account requires approvals for transfers and the transfer was approved,
36
32
  # this will contain details of the approval.
37
33
  sig { returns(T.nilable(Increase::CardPushTransfer::Approval)) }
@@ -83,11 +79,6 @@ module Increase
83
79
  end
84
80
  attr_writer :created_by
85
81
 
86
- # The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the transfer's
87
- # currency.
88
- sig { returns(Increase::CardPushTransfer::Currency::TaggedSymbol) }
89
- attr_accessor :currency
90
-
91
82
  # If the transfer is rejected by the card network or the destination financial
92
83
  # institution, this will contain supplemental details.
93
84
  sig { returns(T.nilable(Increase::CardPushTransfer::Decline)) }
@@ -136,6 +127,20 @@ module Increase
136
127
  sig { returns(String) }
137
128
  attr_accessor :merchant_state
138
129
 
130
+ # The amount that was transferred. The receiving bank will have converted this to
131
+ # the cardholder's currency. The amount that is applied to your Increase account
132
+ # matches the currency of your account.
133
+ sig { returns(Increase::CardPushTransfer::PresentmentAmount) }
134
+ attr_reader :presentment_amount
135
+
136
+ sig do
137
+ params(
138
+ presentment_amount:
139
+ Increase::CardPushTransfer::PresentmentAmount::OrHash
140
+ ).void
141
+ end
142
+ attr_writer :presentment_amount
143
+
139
144
  # The name of the funds recipient.
140
145
  sig { returns(String) }
141
146
  attr_accessor :recipient_name
@@ -191,7 +196,6 @@ module Increase
191
196
  id: String,
192
197
  acceptance: T.nilable(Increase::CardPushTransfer::Acceptance::OrHash),
193
198
  account_id: String,
194
- amount: Integer,
195
199
  approval: T.nilable(Increase::CardPushTransfer::Approval::OrHash),
196
200
  business_application_identifier:
197
201
  Increase::CardPushTransfer::BusinessApplicationIdentifier::OrSymbol,
@@ -199,7 +203,6 @@ module Increase
199
203
  T.nilable(Increase::CardPushTransfer::Cancellation::OrHash),
200
204
  created_at: Time,
201
205
  created_by: T.nilable(Increase::CardPushTransfer::CreatedBy::OrHash),
202
- currency: Increase::CardPushTransfer::Currency::OrSymbol,
203
206
  decline: T.nilable(Increase::CardPushTransfer::Decline::OrHash),
204
207
  idempotency_key: T.nilable(String),
205
208
  merchant_category_code: String,
@@ -208,6 +211,8 @@ module Increase
208
211
  merchant_name_prefix: String,
209
212
  merchant_postal_code: String,
210
213
  merchant_state: String,
214
+ presentment_amount:
215
+ Increase::CardPushTransfer::PresentmentAmount::OrHash,
211
216
  recipient_name: String,
212
217
  sender_address_city: String,
213
218
  sender_address_line1: String,
@@ -228,8 +233,6 @@ module Increase
228
233
  acceptance:,
229
234
  # The Account from which the transfer was sent.
230
235
  account_id:,
231
- # The transfer amount in USD cents.
232
- amount:,
233
236
  # If your account requires approvals for transfers and the transfer was approved,
234
237
  # this will contain details of the approval.
235
238
  approval:,
@@ -245,9 +248,6 @@ module Increase
245
248
  created_at:,
246
249
  # What object created the transfer, either via the API or the dashboard.
247
250
  created_by:,
248
- # The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the transfer's
249
- # currency.
250
- currency:,
251
251
  # If the transfer is rejected by the card network or the destination financial
252
252
  # institution, this will contain supplemental details.
253
253
  decline:,
@@ -273,6 +273,10 @@ module Increase
273
273
  merchant_postal_code:,
274
274
  # The state of the merchant (generally your business) sending the transfer.
275
275
  merchant_state:,
276
+ # The amount that was transferred. The receiving bank will have converted this to
277
+ # the cardholder's currency. The amount that is applied to your Increase account
278
+ # matches the currency of your account.
279
+ presentment_amount:,
276
280
  # The name of the funds recipient.
277
281
  recipient_name:,
278
282
  # The city of the sender.
@@ -304,14 +308,12 @@ module Increase
304
308
  id: String,
305
309
  acceptance: T.nilable(Increase::CardPushTransfer::Acceptance),
306
310
  account_id: String,
307
- amount: Integer,
308
311
  approval: T.nilable(Increase::CardPushTransfer::Approval),
309
312
  business_application_identifier:
310
313
  Increase::CardPushTransfer::BusinessApplicationIdentifier::TaggedSymbol,
311
314
  cancellation: T.nilable(Increase::CardPushTransfer::Cancellation),
312
315
  created_at: Time,
313
316
  created_by: T.nilable(Increase::CardPushTransfer::CreatedBy),
314
- currency: Increase::CardPushTransfer::Currency::TaggedSymbol,
315
317
  decline: T.nilable(Increase::CardPushTransfer::Decline),
316
318
  idempotency_key: T.nilable(String),
317
319
  merchant_category_code: String,
@@ -320,6 +322,7 @@ module Increase
320
322
  merchant_name_prefix: String,
321
323
  merchant_postal_code: String,
322
324
  merchant_state: String,
325
+ presentment_amount: Increase::CardPushTransfer::PresentmentAmount,
323
326
  recipient_name: String,
324
327
  sender_address_city: String,
325
328
  sender_address_line1: String,
@@ -368,6 +371,10 @@ module Increase
368
371
  sig { returns(T.nilable(String)) }
369
372
  attr_accessor :network_transaction_identifier
370
373
 
374
+ # The transfer amount in USD cents.
375
+ sig { returns(Integer) }
376
+ attr_accessor :settlement_amount
377
+
371
378
  # If the transfer is accepted by the recipient bank, this will contain
372
379
  # supplemental details.
373
380
  sig do
@@ -378,7 +385,8 @@ module Increase
378
385
  T.nilable(
379
386
  Increase::CardPushTransfer::Acceptance::CardVerificationValue2Result::OrSymbol
380
387
  ),
381
- network_transaction_identifier: T.nilable(String)
388
+ network_transaction_identifier: T.nilable(String),
389
+ settlement_amount: Integer
382
390
  ).returns(T.attached_class)
383
391
  end
384
392
  def self.new(
@@ -390,7 +398,9 @@ module Increase
390
398
  # The result of the Card Verification Value 2 match.
391
399
  card_verification_value2_result:,
392
400
  # A unique identifier for the transaction on the card network.
393
- network_transaction_identifier:
401
+ network_transaction_identifier:,
402
+ # The transfer amount in USD cents.
403
+ settlement_amount:
394
404
  )
395
405
  end
396
406
 
@@ -403,7 +413,8 @@ module Increase
403
413
  T.nilable(
404
414
  Increase::CardPushTransfer::Acceptance::CardVerificationValue2Result::TaggedSymbol
405
415
  ),
406
- network_transaction_identifier: T.nilable(String)
416
+ network_transaction_identifier: T.nilable(String),
417
+ settlement_amount: Integer
407
418
  }
408
419
  )
409
420
  end
@@ -886,27 +897,6 @@ module Increase
886
897
  end
887
898
  end
888
899
 
889
- # The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the transfer's
890
- # currency.
891
- module Currency
892
- extend Increase::Internal::Type::Enum
893
-
894
- TaggedSymbol =
895
- T.type_alias { T.all(Symbol, Increase::CardPushTransfer::Currency) }
896
- OrSymbol = T.type_alias { T.any(Symbol, String) }
897
-
898
- # US Dollar (USD)
899
- USD = T.let(:USD, Increase::CardPushTransfer::Currency::TaggedSymbol)
900
-
901
- sig do
902
- override.returns(
903
- T::Array[Increase::CardPushTransfer::Currency::TaggedSymbol]
904
- )
905
- end
906
- def self.values
907
- end
908
- end
909
-
910
900
  class Decline < Increase::Internal::Type::BaseModel
911
901
  OrHash =
912
902
  T.type_alias do
@@ -1279,6 +1269,1204 @@ module Increase
1279
1269
  end
1280
1270
  end
1281
1271
 
1272
+ class PresentmentAmount < Increase::Internal::Type::BaseModel
1273
+ OrHash =
1274
+ T.type_alias do
1275
+ T.any(
1276
+ Increase::CardPushTransfer::PresentmentAmount,
1277
+ Increase::Internal::AnyHash
1278
+ )
1279
+ end
1280
+
1281
+ # The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) currency code.
1282
+ sig do
1283
+ returns(
1284
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1285
+ )
1286
+ end
1287
+ attr_accessor :currency
1288
+
1289
+ # The amount value represented as a string containing a decimal number in major
1290
+ # units (so e.g., "12.34" for $12.34).
1291
+ sig { returns(String) }
1292
+ attr_accessor :value
1293
+
1294
+ # The amount that was transferred. The receiving bank will have converted this to
1295
+ # the cardholder's currency. The amount that is applied to your Increase account
1296
+ # matches the currency of your account.
1297
+ sig do
1298
+ params(
1299
+ currency:
1300
+ Increase::CardPushTransfer::PresentmentAmount::Currency::OrSymbol,
1301
+ value: String
1302
+ ).returns(T.attached_class)
1303
+ end
1304
+ def self.new(
1305
+ # The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) currency code.
1306
+ currency:,
1307
+ # The amount value represented as a string containing a decimal number in major
1308
+ # units (so e.g., "12.34" for $12.34).
1309
+ value:
1310
+ )
1311
+ end
1312
+
1313
+ sig do
1314
+ override.returns(
1315
+ {
1316
+ currency:
1317
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol,
1318
+ value: String
1319
+ }
1320
+ )
1321
+ end
1322
+ def to_hash
1323
+ end
1324
+
1325
+ # The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) currency code.
1326
+ module Currency
1327
+ extend Increase::Internal::Type::Enum
1328
+
1329
+ TaggedSymbol =
1330
+ T.type_alias do
1331
+ T.all(
1332
+ Symbol,
1333
+ Increase::CardPushTransfer::PresentmentAmount::Currency
1334
+ )
1335
+ end
1336
+ OrSymbol = T.type_alias { T.any(Symbol, String) }
1337
+
1338
+ # AFN
1339
+ AFN =
1340
+ T.let(
1341
+ :AFN,
1342
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1343
+ )
1344
+
1345
+ # EUR
1346
+ EUR =
1347
+ T.let(
1348
+ :EUR,
1349
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1350
+ )
1351
+
1352
+ # ALL
1353
+ ALL =
1354
+ T.let(
1355
+ :ALL,
1356
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1357
+ )
1358
+
1359
+ # DZD
1360
+ DZD =
1361
+ T.let(
1362
+ :DZD,
1363
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1364
+ )
1365
+
1366
+ # USD
1367
+ USD =
1368
+ T.let(
1369
+ :USD,
1370
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1371
+ )
1372
+
1373
+ # AOA
1374
+ AOA =
1375
+ T.let(
1376
+ :AOA,
1377
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1378
+ )
1379
+
1380
+ # ARS
1381
+ ARS =
1382
+ T.let(
1383
+ :ARS,
1384
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1385
+ )
1386
+
1387
+ # AMD
1388
+ AMD =
1389
+ T.let(
1390
+ :AMD,
1391
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1392
+ )
1393
+
1394
+ # AWG
1395
+ AWG =
1396
+ T.let(
1397
+ :AWG,
1398
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1399
+ )
1400
+
1401
+ # AUD
1402
+ AUD =
1403
+ T.let(
1404
+ :AUD,
1405
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1406
+ )
1407
+
1408
+ # AZN
1409
+ AZN =
1410
+ T.let(
1411
+ :AZN,
1412
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1413
+ )
1414
+
1415
+ # BSD
1416
+ BSD =
1417
+ T.let(
1418
+ :BSD,
1419
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1420
+ )
1421
+
1422
+ # BHD
1423
+ BHD =
1424
+ T.let(
1425
+ :BHD,
1426
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1427
+ )
1428
+
1429
+ # BDT
1430
+ BDT =
1431
+ T.let(
1432
+ :BDT,
1433
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1434
+ )
1435
+
1436
+ # BBD
1437
+ BBD =
1438
+ T.let(
1439
+ :BBD,
1440
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1441
+ )
1442
+
1443
+ # BYN
1444
+ BYN =
1445
+ T.let(
1446
+ :BYN,
1447
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1448
+ )
1449
+
1450
+ # BZD
1451
+ BZD =
1452
+ T.let(
1453
+ :BZD,
1454
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1455
+ )
1456
+
1457
+ # BMD
1458
+ BMD =
1459
+ T.let(
1460
+ :BMD,
1461
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1462
+ )
1463
+
1464
+ # INR
1465
+ INR =
1466
+ T.let(
1467
+ :INR,
1468
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1469
+ )
1470
+
1471
+ # BTN
1472
+ BTN =
1473
+ T.let(
1474
+ :BTN,
1475
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1476
+ )
1477
+
1478
+ # BOB
1479
+ BOB =
1480
+ T.let(
1481
+ :BOB,
1482
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1483
+ )
1484
+
1485
+ # BOV
1486
+ BOV =
1487
+ T.let(
1488
+ :BOV,
1489
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1490
+ )
1491
+
1492
+ # BAM
1493
+ BAM =
1494
+ T.let(
1495
+ :BAM,
1496
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1497
+ )
1498
+
1499
+ # BWP
1500
+ BWP =
1501
+ T.let(
1502
+ :BWP,
1503
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1504
+ )
1505
+
1506
+ # NOK
1507
+ NOK =
1508
+ T.let(
1509
+ :NOK,
1510
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1511
+ )
1512
+
1513
+ # BRL
1514
+ BRL =
1515
+ T.let(
1516
+ :BRL,
1517
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1518
+ )
1519
+
1520
+ # BND
1521
+ BND =
1522
+ T.let(
1523
+ :BND,
1524
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1525
+ )
1526
+
1527
+ # BGN
1528
+ BGN =
1529
+ T.let(
1530
+ :BGN,
1531
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1532
+ )
1533
+
1534
+ # BIF
1535
+ BIF =
1536
+ T.let(
1537
+ :BIF,
1538
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1539
+ )
1540
+
1541
+ # CVE
1542
+ CVE =
1543
+ T.let(
1544
+ :CVE,
1545
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1546
+ )
1547
+
1548
+ # KHR
1549
+ KHR =
1550
+ T.let(
1551
+ :KHR,
1552
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1553
+ )
1554
+
1555
+ # CAD
1556
+ CAD =
1557
+ T.let(
1558
+ :CAD,
1559
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1560
+ )
1561
+
1562
+ # KYD
1563
+ KYD =
1564
+ T.let(
1565
+ :KYD,
1566
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1567
+ )
1568
+
1569
+ # CLP
1570
+ CLP =
1571
+ T.let(
1572
+ :CLP,
1573
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1574
+ )
1575
+
1576
+ # CLF
1577
+ CLF =
1578
+ T.let(
1579
+ :CLF,
1580
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1581
+ )
1582
+
1583
+ # CNY
1584
+ CNY =
1585
+ T.let(
1586
+ :CNY,
1587
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1588
+ )
1589
+
1590
+ # COP
1591
+ COP =
1592
+ T.let(
1593
+ :COP,
1594
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1595
+ )
1596
+
1597
+ # COU
1598
+ COU =
1599
+ T.let(
1600
+ :COU,
1601
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1602
+ )
1603
+
1604
+ # KMF
1605
+ KMF =
1606
+ T.let(
1607
+ :KMF,
1608
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1609
+ )
1610
+
1611
+ # CDF
1612
+ CDF =
1613
+ T.let(
1614
+ :CDF,
1615
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1616
+ )
1617
+
1618
+ # NZD
1619
+ NZD =
1620
+ T.let(
1621
+ :NZD,
1622
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1623
+ )
1624
+
1625
+ # CRC
1626
+ CRC =
1627
+ T.let(
1628
+ :CRC,
1629
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1630
+ )
1631
+
1632
+ # CUP
1633
+ CUP =
1634
+ T.let(
1635
+ :CUP,
1636
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1637
+ )
1638
+
1639
+ # CZK
1640
+ CZK =
1641
+ T.let(
1642
+ :CZK,
1643
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1644
+ )
1645
+
1646
+ # DKK
1647
+ DKK =
1648
+ T.let(
1649
+ :DKK,
1650
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1651
+ )
1652
+
1653
+ # DJF
1654
+ DJF =
1655
+ T.let(
1656
+ :DJF,
1657
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1658
+ )
1659
+
1660
+ # DOP
1661
+ DOP =
1662
+ T.let(
1663
+ :DOP,
1664
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1665
+ )
1666
+
1667
+ # EGP
1668
+ EGP =
1669
+ T.let(
1670
+ :EGP,
1671
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1672
+ )
1673
+
1674
+ # SVC
1675
+ SVC =
1676
+ T.let(
1677
+ :SVC,
1678
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1679
+ )
1680
+
1681
+ # ERN
1682
+ ERN =
1683
+ T.let(
1684
+ :ERN,
1685
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1686
+ )
1687
+
1688
+ # SZL
1689
+ SZL =
1690
+ T.let(
1691
+ :SZL,
1692
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1693
+ )
1694
+
1695
+ # ETB
1696
+ ETB =
1697
+ T.let(
1698
+ :ETB,
1699
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1700
+ )
1701
+
1702
+ # FKP
1703
+ FKP =
1704
+ T.let(
1705
+ :FKP,
1706
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1707
+ )
1708
+
1709
+ # FJD
1710
+ FJD =
1711
+ T.let(
1712
+ :FJD,
1713
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1714
+ )
1715
+
1716
+ # GMD
1717
+ GMD =
1718
+ T.let(
1719
+ :GMD,
1720
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1721
+ )
1722
+
1723
+ # GEL
1724
+ GEL =
1725
+ T.let(
1726
+ :GEL,
1727
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1728
+ )
1729
+
1730
+ # GHS
1731
+ GHS =
1732
+ T.let(
1733
+ :GHS,
1734
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1735
+ )
1736
+
1737
+ # GIP
1738
+ GIP =
1739
+ T.let(
1740
+ :GIP,
1741
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1742
+ )
1743
+
1744
+ # GTQ
1745
+ GTQ =
1746
+ T.let(
1747
+ :GTQ,
1748
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1749
+ )
1750
+
1751
+ # GBP
1752
+ GBP =
1753
+ T.let(
1754
+ :GBP,
1755
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1756
+ )
1757
+
1758
+ # GNF
1759
+ GNF =
1760
+ T.let(
1761
+ :GNF,
1762
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1763
+ )
1764
+
1765
+ # GYD
1766
+ GYD =
1767
+ T.let(
1768
+ :GYD,
1769
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1770
+ )
1771
+
1772
+ # HTG
1773
+ HTG =
1774
+ T.let(
1775
+ :HTG,
1776
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1777
+ )
1778
+
1779
+ # HNL
1780
+ HNL =
1781
+ T.let(
1782
+ :HNL,
1783
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1784
+ )
1785
+
1786
+ # HKD
1787
+ HKD =
1788
+ T.let(
1789
+ :HKD,
1790
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1791
+ )
1792
+
1793
+ # HUF
1794
+ HUF =
1795
+ T.let(
1796
+ :HUF,
1797
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1798
+ )
1799
+
1800
+ # ISK
1801
+ ISK =
1802
+ T.let(
1803
+ :ISK,
1804
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1805
+ )
1806
+
1807
+ # IDR
1808
+ IDR =
1809
+ T.let(
1810
+ :IDR,
1811
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1812
+ )
1813
+
1814
+ # IRR
1815
+ IRR =
1816
+ T.let(
1817
+ :IRR,
1818
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1819
+ )
1820
+
1821
+ # IQD
1822
+ IQD =
1823
+ T.let(
1824
+ :IQD,
1825
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1826
+ )
1827
+
1828
+ # ILS
1829
+ ILS =
1830
+ T.let(
1831
+ :ILS,
1832
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1833
+ )
1834
+
1835
+ # JMD
1836
+ JMD =
1837
+ T.let(
1838
+ :JMD,
1839
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1840
+ )
1841
+
1842
+ # JPY
1843
+ JPY =
1844
+ T.let(
1845
+ :JPY,
1846
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1847
+ )
1848
+
1849
+ # JOD
1850
+ JOD =
1851
+ T.let(
1852
+ :JOD,
1853
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1854
+ )
1855
+
1856
+ # KZT
1857
+ KZT =
1858
+ T.let(
1859
+ :KZT,
1860
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1861
+ )
1862
+
1863
+ # KES
1864
+ KES =
1865
+ T.let(
1866
+ :KES,
1867
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1868
+ )
1869
+
1870
+ # KPW
1871
+ KPW =
1872
+ T.let(
1873
+ :KPW,
1874
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1875
+ )
1876
+
1877
+ # KRW
1878
+ KRW =
1879
+ T.let(
1880
+ :KRW,
1881
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1882
+ )
1883
+
1884
+ # KWD
1885
+ KWD =
1886
+ T.let(
1887
+ :KWD,
1888
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1889
+ )
1890
+
1891
+ # KGS
1892
+ KGS =
1893
+ T.let(
1894
+ :KGS,
1895
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1896
+ )
1897
+
1898
+ # LAK
1899
+ LAK =
1900
+ T.let(
1901
+ :LAK,
1902
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1903
+ )
1904
+
1905
+ # LBP
1906
+ LBP =
1907
+ T.let(
1908
+ :LBP,
1909
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1910
+ )
1911
+
1912
+ # LSL
1913
+ LSL =
1914
+ T.let(
1915
+ :LSL,
1916
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1917
+ )
1918
+
1919
+ # ZAR
1920
+ ZAR =
1921
+ T.let(
1922
+ :ZAR,
1923
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1924
+ )
1925
+
1926
+ # LRD
1927
+ LRD =
1928
+ T.let(
1929
+ :LRD,
1930
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1931
+ )
1932
+
1933
+ # LYD
1934
+ LYD =
1935
+ T.let(
1936
+ :LYD,
1937
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1938
+ )
1939
+
1940
+ # CHF
1941
+ CHF =
1942
+ T.let(
1943
+ :CHF,
1944
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1945
+ )
1946
+
1947
+ # MOP
1948
+ MOP =
1949
+ T.let(
1950
+ :MOP,
1951
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1952
+ )
1953
+
1954
+ # MKD
1955
+ MKD =
1956
+ T.let(
1957
+ :MKD,
1958
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1959
+ )
1960
+
1961
+ # MGA
1962
+ MGA =
1963
+ T.let(
1964
+ :MGA,
1965
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1966
+ )
1967
+
1968
+ # MWK
1969
+ MWK =
1970
+ T.let(
1971
+ :MWK,
1972
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1973
+ )
1974
+
1975
+ # MYR
1976
+ MYR =
1977
+ T.let(
1978
+ :MYR,
1979
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1980
+ )
1981
+
1982
+ # MVR
1983
+ MVR =
1984
+ T.let(
1985
+ :MVR,
1986
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1987
+ )
1988
+
1989
+ # MRU
1990
+ MRU =
1991
+ T.let(
1992
+ :MRU,
1993
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
1994
+ )
1995
+
1996
+ # MUR
1997
+ MUR =
1998
+ T.let(
1999
+ :MUR,
2000
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
2001
+ )
2002
+
2003
+ # MXN
2004
+ MXN =
2005
+ T.let(
2006
+ :MXN,
2007
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
2008
+ )
2009
+
2010
+ # MXV
2011
+ MXV =
2012
+ T.let(
2013
+ :MXV,
2014
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
2015
+ )
2016
+
2017
+ # MDL
2018
+ MDL =
2019
+ T.let(
2020
+ :MDL,
2021
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
2022
+ )
2023
+
2024
+ # MNT
2025
+ MNT =
2026
+ T.let(
2027
+ :MNT,
2028
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
2029
+ )
2030
+
2031
+ # MAD
2032
+ MAD =
2033
+ T.let(
2034
+ :MAD,
2035
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
2036
+ )
2037
+
2038
+ # MZN
2039
+ MZN =
2040
+ T.let(
2041
+ :MZN,
2042
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
2043
+ )
2044
+
2045
+ # MMK
2046
+ MMK =
2047
+ T.let(
2048
+ :MMK,
2049
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
2050
+ )
2051
+
2052
+ # NAD
2053
+ NAD =
2054
+ T.let(
2055
+ :NAD,
2056
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
2057
+ )
2058
+
2059
+ # NPR
2060
+ NPR =
2061
+ T.let(
2062
+ :NPR,
2063
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
2064
+ )
2065
+
2066
+ # NIO
2067
+ NIO =
2068
+ T.let(
2069
+ :NIO,
2070
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
2071
+ )
2072
+
2073
+ # NGN
2074
+ NGN =
2075
+ T.let(
2076
+ :NGN,
2077
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
2078
+ )
2079
+
2080
+ # OMR
2081
+ OMR =
2082
+ T.let(
2083
+ :OMR,
2084
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
2085
+ )
2086
+
2087
+ # PKR
2088
+ PKR =
2089
+ T.let(
2090
+ :PKR,
2091
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
2092
+ )
2093
+
2094
+ # PAB
2095
+ PAB =
2096
+ T.let(
2097
+ :PAB,
2098
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
2099
+ )
2100
+
2101
+ # PGK
2102
+ PGK =
2103
+ T.let(
2104
+ :PGK,
2105
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
2106
+ )
2107
+
2108
+ # PYG
2109
+ PYG =
2110
+ T.let(
2111
+ :PYG,
2112
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
2113
+ )
2114
+
2115
+ # PEN
2116
+ PEN =
2117
+ T.let(
2118
+ :PEN,
2119
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
2120
+ )
2121
+
2122
+ # PHP
2123
+ PHP =
2124
+ T.let(
2125
+ :PHP,
2126
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
2127
+ )
2128
+
2129
+ # PLN
2130
+ PLN =
2131
+ T.let(
2132
+ :PLN,
2133
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
2134
+ )
2135
+
2136
+ # QAR
2137
+ QAR =
2138
+ T.let(
2139
+ :QAR,
2140
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
2141
+ )
2142
+
2143
+ # RON
2144
+ RON =
2145
+ T.let(
2146
+ :RON,
2147
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
2148
+ )
2149
+
2150
+ # RUB
2151
+ RUB =
2152
+ T.let(
2153
+ :RUB,
2154
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
2155
+ )
2156
+
2157
+ # RWF
2158
+ RWF =
2159
+ T.let(
2160
+ :RWF,
2161
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
2162
+ )
2163
+
2164
+ # SHP
2165
+ SHP =
2166
+ T.let(
2167
+ :SHP,
2168
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
2169
+ )
2170
+
2171
+ # WST
2172
+ WST =
2173
+ T.let(
2174
+ :WST,
2175
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
2176
+ )
2177
+
2178
+ # STN
2179
+ STN =
2180
+ T.let(
2181
+ :STN,
2182
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
2183
+ )
2184
+
2185
+ # SAR
2186
+ SAR =
2187
+ T.let(
2188
+ :SAR,
2189
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
2190
+ )
2191
+
2192
+ # RSD
2193
+ RSD =
2194
+ T.let(
2195
+ :RSD,
2196
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
2197
+ )
2198
+
2199
+ # SCR
2200
+ SCR =
2201
+ T.let(
2202
+ :SCR,
2203
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
2204
+ )
2205
+
2206
+ # SLE
2207
+ SLE =
2208
+ T.let(
2209
+ :SLE,
2210
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
2211
+ )
2212
+
2213
+ # SGD
2214
+ SGD =
2215
+ T.let(
2216
+ :SGD,
2217
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
2218
+ )
2219
+
2220
+ # SBD
2221
+ SBD =
2222
+ T.let(
2223
+ :SBD,
2224
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
2225
+ )
2226
+
2227
+ # SOS
2228
+ SOS =
2229
+ T.let(
2230
+ :SOS,
2231
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
2232
+ )
2233
+
2234
+ # SSP
2235
+ SSP =
2236
+ T.let(
2237
+ :SSP,
2238
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
2239
+ )
2240
+
2241
+ # LKR
2242
+ LKR =
2243
+ T.let(
2244
+ :LKR,
2245
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
2246
+ )
2247
+
2248
+ # SDG
2249
+ SDG =
2250
+ T.let(
2251
+ :SDG,
2252
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
2253
+ )
2254
+
2255
+ # SRD
2256
+ SRD =
2257
+ T.let(
2258
+ :SRD,
2259
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
2260
+ )
2261
+
2262
+ # SEK
2263
+ SEK =
2264
+ T.let(
2265
+ :SEK,
2266
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
2267
+ )
2268
+
2269
+ # CHE
2270
+ CHE =
2271
+ T.let(
2272
+ :CHE,
2273
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
2274
+ )
2275
+
2276
+ # CHW
2277
+ CHW =
2278
+ T.let(
2279
+ :CHW,
2280
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
2281
+ )
2282
+
2283
+ # SYP
2284
+ SYP =
2285
+ T.let(
2286
+ :SYP,
2287
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
2288
+ )
2289
+
2290
+ # TWD
2291
+ TWD =
2292
+ T.let(
2293
+ :TWD,
2294
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
2295
+ )
2296
+
2297
+ # TJS
2298
+ TJS =
2299
+ T.let(
2300
+ :TJS,
2301
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
2302
+ )
2303
+
2304
+ # TZS
2305
+ TZS =
2306
+ T.let(
2307
+ :TZS,
2308
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
2309
+ )
2310
+
2311
+ # THB
2312
+ THB =
2313
+ T.let(
2314
+ :THB,
2315
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
2316
+ )
2317
+
2318
+ # TOP
2319
+ TOP =
2320
+ T.let(
2321
+ :TOP,
2322
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
2323
+ )
2324
+
2325
+ # TTD
2326
+ TTD =
2327
+ T.let(
2328
+ :TTD,
2329
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
2330
+ )
2331
+
2332
+ # TND
2333
+ TND =
2334
+ T.let(
2335
+ :TND,
2336
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
2337
+ )
2338
+
2339
+ # TRY
2340
+ TRY =
2341
+ T.let(
2342
+ :TRY,
2343
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
2344
+ )
2345
+
2346
+ # TMT
2347
+ TMT =
2348
+ T.let(
2349
+ :TMT,
2350
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
2351
+ )
2352
+
2353
+ # UGX
2354
+ UGX =
2355
+ T.let(
2356
+ :UGX,
2357
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
2358
+ )
2359
+
2360
+ # UAH
2361
+ UAH =
2362
+ T.let(
2363
+ :UAH,
2364
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
2365
+ )
2366
+
2367
+ # AED
2368
+ AED =
2369
+ T.let(
2370
+ :AED,
2371
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
2372
+ )
2373
+
2374
+ # USN
2375
+ USN =
2376
+ T.let(
2377
+ :USN,
2378
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
2379
+ )
2380
+
2381
+ # UYU
2382
+ UYU =
2383
+ T.let(
2384
+ :UYU,
2385
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
2386
+ )
2387
+
2388
+ # UYI
2389
+ UYI =
2390
+ T.let(
2391
+ :UYI,
2392
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
2393
+ )
2394
+
2395
+ # UYW
2396
+ UYW =
2397
+ T.let(
2398
+ :UYW,
2399
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
2400
+ )
2401
+
2402
+ # UZS
2403
+ UZS =
2404
+ T.let(
2405
+ :UZS,
2406
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
2407
+ )
2408
+
2409
+ # VUV
2410
+ VUV =
2411
+ T.let(
2412
+ :VUV,
2413
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
2414
+ )
2415
+
2416
+ # VES
2417
+ VES =
2418
+ T.let(
2419
+ :VES,
2420
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
2421
+ )
2422
+
2423
+ # VED
2424
+ VED =
2425
+ T.let(
2426
+ :VED,
2427
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
2428
+ )
2429
+
2430
+ # VND
2431
+ VND =
2432
+ T.let(
2433
+ :VND,
2434
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
2435
+ )
2436
+
2437
+ # YER
2438
+ YER =
2439
+ T.let(
2440
+ :YER,
2441
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
2442
+ )
2443
+
2444
+ # ZMW
2445
+ ZMW =
2446
+ T.let(
2447
+ :ZMW,
2448
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
2449
+ )
2450
+
2451
+ # ZWG
2452
+ ZWG =
2453
+ T.let(
2454
+ :ZWG,
2455
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
2456
+ )
2457
+
2458
+ sig do
2459
+ override.returns(
2460
+ T::Array[
2461
+ Increase::CardPushTransfer::PresentmentAmount::Currency::TaggedSymbol
2462
+ ]
2463
+ )
2464
+ end
2465
+ def self.values
2466
+ end
2467
+ end
2468
+ end
2469
+
1282
2470
  # The lifecycle status of the transfer.
1283
2471
  module Status
1284
2472
  extend Increase::Internal::Type::Enum