increase 1.19.0 → 1.21.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +17 -0
- data/README.md +1 -1
- data/lib/increase/models/card_payment.rb +1543 -77
- data/lib/increase/models/declined_transaction.rb +374 -1
- data/lib/increase/models/pending_transaction.rb +375 -1
- data/lib/increase/models/real_time_decision.rb +356 -1
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/card_payment.rbi +10210 -7508
- data/rbi/increase/models/declined_transaction.rbi +678 -0
- data/rbi/increase/models/pending_transaction.rbi +668 -0
- data/rbi/increase/models/real_time_decision.rbi +668 -0
- data/sig/increase/models/card_payment.rbs +695 -0
- data/sig/increase/models/declined_transaction.rbs +175 -0
- data/sig/increase/models/pending_transaction.rbs +170 -0
- data/sig/increase/models/real_time_decision.rbs +170 -0
- metadata +1 -1
@@ -440,6 +440,7 @@ module Increase
|
|
440
440
|
{
|
441
441
|
id: String,
|
442
442
|
actioner: Increase::Models::CardPayment::Element::CardAuthorization::actioner,
|
443
|
+
additional_amounts: Increase::CardPayment::Element::CardAuthorization::AdditionalAmounts,
|
443
444
|
amount: Integer,
|
444
445
|
card_payment_id: String,
|
445
446
|
currency: Increase::Models::CardPayment::Element::CardAuthorization::currency,
|
@@ -472,6 +473,8 @@ module Increase
|
|
472
473
|
|
473
474
|
attr_accessor actioner: Increase::Models::CardPayment::Element::CardAuthorization::actioner
|
474
475
|
|
476
|
+
attr_accessor additional_amounts: Increase::CardPayment::Element::CardAuthorization::AdditionalAmounts
|
477
|
+
|
475
478
|
attr_accessor amount: Integer
|
476
479
|
|
477
480
|
attr_accessor card_payment_id: String
|
@@ -525,6 +528,7 @@ module Increase
|
|
525
528
|
def initialize: (
|
526
529
|
id: String,
|
527
530
|
actioner: Increase::Models::CardPayment::Element::CardAuthorization::actioner,
|
531
|
+
additional_amounts: Increase::CardPayment::Element::CardAuthorization::AdditionalAmounts,
|
528
532
|
amount: Integer,
|
529
533
|
card_payment_id: String,
|
530
534
|
currency: Increase::Models::CardPayment::Element::CardAuthorization::currency,
|
@@ -555,6 +559,7 @@ module Increase
|
|
555
559
|
def to_hash: -> {
|
556
560
|
id: String,
|
557
561
|
actioner: Increase::Models::CardPayment::Element::CardAuthorization::actioner,
|
562
|
+
additional_amounts: Increase::CardPayment::Element::CardAuthorization::AdditionalAmounts,
|
558
563
|
amount: Integer,
|
559
564
|
card_payment_id: String,
|
560
565
|
currency: Increase::Models::CardPayment::Element::CardAuthorization::currency,
|
@@ -599,6 +604,171 @@ module Increase
|
|
599
604
|
def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardAuthorization::actioner]
|
600
605
|
end
|
601
606
|
|
607
|
+
type additional_amounts =
|
608
|
+
{
|
609
|
+
clinic: Increase::CardPayment::Element::CardAuthorization::AdditionalAmounts::Clinic?,
|
610
|
+
dental: Increase::CardPayment::Element::CardAuthorization::AdditionalAmounts::Dental?,
|
611
|
+
prescription: Increase::CardPayment::Element::CardAuthorization::AdditionalAmounts::Prescription?,
|
612
|
+
surcharge: Increase::CardPayment::Element::CardAuthorization::AdditionalAmounts::Surcharge?,
|
613
|
+
total_cumulative: Increase::CardPayment::Element::CardAuthorization::AdditionalAmounts::TotalCumulative?,
|
614
|
+
total_healthcare: Increase::CardPayment::Element::CardAuthorization::AdditionalAmounts::TotalHealthcare?,
|
615
|
+
transit: Increase::CardPayment::Element::CardAuthorization::AdditionalAmounts::Transit?,
|
616
|
+
unknown: Increase::CardPayment::Element::CardAuthorization::AdditionalAmounts::Unknown?,
|
617
|
+
vision: Increase::CardPayment::Element::CardAuthorization::AdditionalAmounts::Vision?
|
618
|
+
}
|
619
|
+
|
620
|
+
class AdditionalAmounts < Increase::Internal::Type::BaseModel
|
621
|
+
attr_accessor clinic: Increase::CardPayment::Element::CardAuthorization::AdditionalAmounts::Clinic?
|
622
|
+
|
623
|
+
attr_accessor dental: Increase::CardPayment::Element::CardAuthorization::AdditionalAmounts::Dental?
|
624
|
+
|
625
|
+
attr_accessor prescription: Increase::CardPayment::Element::CardAuthorization::AdditionalAmounts::Prescription?
|
626
|
+
|
627
|
+
attr_accessor surcharge: Increase::CardPayment::Element::CardAuthorization::AdditionalAmounts::Surcharge?
|
628
|
+
|
629
|
+
attr_accessor total_cumulative: Increase::CardPayment::Element::CardAuthorization::AdditionalAmounts::TotalCumulative?
|
630
|
+
|
631
|
+
attr_accessor total_healthcare: Increase::CardPayment::Element::CardAuthorization::AdditionalAmounts::TotalHealthcare?
|
632
|
+
|
633
|
+
attr_accessor transit: Increase::CardPayment::Element::CardAuthorization::AdditionalAmounts::Transit?
|
634
|
+
|
635
|
+
attr_accessor unknown: Increase::CardPayment::Element::CardAuthorization::AdditionalAmounts::Unknown?
|
636
|
+
|
637
|
+
attr_accessor vision: Increase::CardPayment::Element::CardAuthorization::AdditionalAmounts::Vision?
|
638
|
+
|
639
|
+
def initialize: (
|
640
|
+
clinic: Increase::CardPayment::Element::CardAuthorization::AdditionalAmounts::Clinic?,
|
641
|
+
dental: Increase::CardPayment::Element::CardAuthorization::AdditionalAmounts::Dental?,
|
642
|
+
prescription: Increase::CardPayment::Element::CardAuthorization::AdditionalAmounts::Prescription?,
|
643
|
+
surcharge: Increase::CardPayment::Element::CardAuthorization::AdditionalAmounts::Surcharge?,
|
644
|
+
total_cumulative: Increase::CardPayment::Element::CardAuthorization::AdditionalAmounts::TotalCumulative?,
|
645
|
+
total_healthcare: Increase::CardPayment::Element::CardAuthorization::AdditionalAmounts::TotalHealthcare?,
|
646
|
+
transit: Increase::CardPayment::Element::CardAuthorization::AdditionalAmounts::Transit?,
|
647
|
+
unknown: Increase::CardPayment::Element::CardAuthorization::AdditionalAmounts::Unknown?,
|
648
|
+
vision: Increase::CardPayment::Element::CardAuthorization::AdditionalAmounts::Vision?
|
649
|
+
) -> void
|
650
|
+
|
651
|
+
def to_hash: -> {
|
652
|
+
clinic: Increase::CardPayment::Element::CardAuthorization::AdditionalAmounts::Clinic?,
|
653
|
+
dental: Increase::CardPayment::Element::CardAuthorization::AdditionalAmounts::Dental?,
|
654
|
+
prescription: Increase::CardPayment::Element::CardAuthorization::AdditionalAmounts::Prescription?,
|
655
|
+
surcharge: Increase::CardPayment::Element::CardAuthorization::AdditionalAmounts::Surcharge?,
|
656
|
+
total_cumulative: Increase::CardPayment::Element::CardAuthorization::AdditionalAmounts::TotalCumulative?,
|
657
|
+
total_healthcare: Increase::CardPayment::Element::CardAuthorization::AdditionalAmounts::TotalHealthcare?,
|
658
|
+
transit: Increase::CardPayment::Element::CardAuthorization::AdditionalAmounts::Transit?,
|
659
|
+
unknown: Increase::CardPayment::Element::CardAuthorization::AdditionalAmounts::Unknown?,
|
660
|
+
vision: Increase::CardPayment::Element::CardAuthorization::AdditionalAmounts::Vision?
|
661
|
+
}
|
662
|
+
|
663
|
+
type clinic = { amount: Integer, currency: String }
|
664
|
+
|
665
|
+
class Clinic < Increase::Internal::Type::BaseModel
|
666
|
+
attr_accessor amount: Integer
|
667
|
+
|
668
|
+
attr_accessor currency: String
|
669
|
+
|
670
|
+
def initialize: (amount: Integer, currency: String) -> void
|
671
|
+
|
672
|
+
def to_hash: -> { amount: Integer, currency: String }
|
673
|
+
end
|
674
|
+
|
675
|
+
type dental = { amount: Integer, currency: String }
|
676
|
+
|
677
|
+
class Dental < Increase::Internal::Type::BaseModel
|
678
|
+
attr_accessor amount: Integer
|
679
|
+
|
680
|
+
attr_accessor currency: String
|
681
|
+
|
682
|
+
def initialize: (amount: Integer, currency: String) -> void
|
683
|
+
|
684
|
+
def to_hash: -> { amount: Integer, currency: String }
|
685
|
+
end
|
686
|
+
|
687
|
+
type prescription = { amount: Integer, currency: String }
|
688
|
+
|
689
|
+
class Prescription < Increase::Internal::Type::BaseModel
|
690
|
+
attr_accessor amount: Integer
|
691
|
+
|
692
|
+
attr_accessor currency: String
|
693
|
+
|
694
|
+
def initialize: (amount: Integer, currency: String) -> void
|
695
|
+
|
696
|
+
def to_hash: -> { amount: Integer, currency: String }
|
697
|
+
end
|
698
|
+
|
699
|
+
type surcharge = { amount: Integer, currency: String }
|
700
|
+
|
701
|
+
class Surcharge < Increase::Internal::Type::BaseModel
|
702
|
+
attr_accessor amount: Integer
|
703
|
+
|
704
|
+
attr_accessor currency: String
|
705
|
+
|
706
|
+
def initialize: (amount: Integer, currency: String) -> void
|
707
|
+
|
708
|
+
def to_hash: -> { amount: Integer, currency: String }
|
709
|
+
end
|
710
|
+
|
711
|
+
type total_cumulative = { amount: Integer, currency: String }
|
712
|
+
|
713
|
+
class TotalCumulative < Increase::Internal::Type::BaseModel
|
714
|
+
attr_accessor amount: Integer
|
715
|
+
|
716
|
+
attr_accessor currency: String
|
717
|
+
|
718
|
+
def initialize: (amount: Integer, currency: String) -> void
|
719
|
+
|
720
|
+
def to_hash: -> { amount: Integer, currency: String }
|
721
|
+
end
|
722
|
+
|
723
|
+
type total_healthcare = { amount: Integer, currency: String }
|
724
|
+
|
725
|
+
class TotalHealthcare < Increase::Internal::Type::BaseModel
|
726
|
+
attr_accessor amount: Integer
|
727
|
+
|
728
|
+
attr_accessor currency: String
|
729
|
+
|
730
|
+
def initialize: (amount: Integer, currency: String) -> void
|
731
|
+
|
732
|
+
def to_hash: -> { amount: Integer, currency: String }
|
733
|
+
end
|
734
|
+
|
735
|
+
type transit = { amount: Integer, currency: String }
|
736
|
+
|
737
|
+
class Transit < Increase::Internal::Type::BaseModel
|
738
|
+
attr_accessor amount: Integer
|
739
|
+
|
740
|
+
attr_accessor currency: String
|
741
|
+
|
742
|
+
def initialize: (amount: Integer, currency: String) -> void
|
743
|
+
|
744
|
+
def to_hash: -> { amount: Integer, currency: String }
|
745
|
+
end
|
746
|
+
|
747
|
+
type unknown = { amount: Integer, currency: String }
|
748
|
+
|
749
|
+
class Unknown < Increase::Internal::Type::BaseModel
|
750
|
+
attr_accessor amount: Integer
|
751
|
+
|
752
|
+
attr_accessor currency: String
|
753
|
+
|
754
|
+
def initialize: (amount: Integer, currency: String) -> void
|
755
|
+
|
756
|
+
def to_hash: -> { amount: Integer, currency: String }
|
757
|
+
end
|
758
|
+
|
759
|
+
type vision = { amount: Integer, currency: String }
|
760
|
+
|
761
|
+
class Vision < Increase::Internal::Type::BaseModel
|
762
|
+
attr_accessor amount: Integer
|
763
|
+
|
764
|
+
attr_accessor currency: String
|
765
|
+
|
766
|
+
def initialize: (amount: Integer, currency: String) -> void
|
767
|
+
|
768
|
+
def to_hash: -> { amount: Integer, currency: String }
|
769
|
+
end
|
770
|
+
end
|
771
|
+
|
602
772
|
type currency = :CAD | :CHF | :EUR | :GBP | :JPY | :USD
|
603
773
|
|
604
774
|
module Currency
|
@@ -1123,12 +1293,14 @@ module Increase
|
|
1123
1293
|
{
|
1124
1294
|
id: String,
|
1125
1295
|
actioner: Increase::Models::CardPayment::Element::CardDecline::actioner,
|
1296
|
+
additional_amounts: Increase::CardPayment::Element::CardDecline::AdditionalAmounts,
|
1126
1297
|
amount: Integer,
|
1127
1298
|
card_payment_id: String,
|
1128
1299
|
currency: Increase::Models::CardPayment::Element::CardDecline::currency,
|
1129
1300
|
declined_transaction_id: String,
|
1130
1301
|
digital_wallet_token_id: String?,
|
1131
1302
|
direction: Increase::Models::CardPayment::Element::CardDecline::direction,
|
1303
|
+
incremented_card_authorization_id: String?,
|
1132
1304
|
merchant_acceptor_id: String,
|
1133
1305
|
merchant_category_code: String,
|
1134
1306
|
merchant_city: String?,
|
@@ -1155,6 +1327,8 @@ module Increase
|
|
1155
1327
|
|
1156
1328
|
attr_accessor actioner: Increase::Models::CardPayment::Element::CardDecline::actioner
|
1157
1329
|
|
1330
|
+
attr_accessor additional_amounts: Increase::CardPayment::Element::CardDecline::AdditionalAmounts
|
1331
|
+
|
1158
1332
|
attr_accessor amount: Integer
|
1159
1333
|
|
1160
1334
|
attr_accessor card_payment_id: String
|
@@ -1167,6 +1341,8 @@ module Increase
|
|
1167
1341
|
|
1168
1342
|
attr_accessor direction: Increase::Models::CardPayment::Element::CardDecline::direction
|
1169
1343
|
|
1344
|
+
attr_accessor incremented_card_authorization_id: String?
|
1345
|
+
|
1170
1346
|
attr_accessor merchant_acceptor_id: String
|
1171
1347
|
|
1172
1348
|
attr_accessor merchant_category_code: String
|
@@ -1208,12 +1384,14 @@ module Increase
|
|
1208
1384
|
def initialize: (
|
1209
1385
|
id: String,
|
1210
1386
|
actioner: Increase::Models::CardPayment::Element::CardDecline::actioner,
|
1387
|
+
additional_amounts: Increase::CardPayment::Element::CardDecline::AdditionalAmounts,
|
1211
1388
|
amount: Integer,
|
1212
1389
|
card_payment_id: String,
|
1213
1390
|
currency: Increase::Models::CardPayment::Element::CardDecline::currency,
|
1214
1391
|
declined_transaction_id: String,
|
1215
1392
|
digital_wallet_token_id: String?,
|
1216
1393
|
direction: Increase::Models::CardPayment::Element::CardDecline::direction,
|
1394
|
+
incremented_card_authorization_id: String?,
|
1217
1395
|
merchant_acceptor_id: String,
|
1218
1396
|
merchant_category_code: String,
|
1219
1397
|
merchant_city: String?,
|
@@ -1238,12 +1416,14 @@ module Increase
|
|
1238
1416
|
def to_hash: -> {
|
1239
1417
|
id: String,
|
1240
1418
|
actioner: Increase::Models::CardPayment::Element::CardDecline::actioner,
|
1419
|
+
additional_amounts: Increase::CardPayment::Element::CardDecline::AdditionalAmounts,
|
1241
1420
|
amount: Integer,
|
1242
1421
|
card_payment_id: String,
|
1243
1422
|
currency: Increase::Models::CardPayment::Element::CardDecline::currency,
|
1244
1423
|
declined_transaction_id: String,
|
1245
1424
|
digital_wallet_token_id: String?,
|
1246
1425
|
direction: Increase::Models::CardPayment::Element::CardDecline::direction,
|
1426
|
+
incremented_card_authorization_id: String?,
|
1247
1427
|
merchant_acceptor_id: String,
|
1248
1428
|
merchant_category_code: String,
|
1249
1429
|
merchant_city: String?,
|
@@ -1282,6 +1462,171 @@ module Increase
|
|
1282
1462
|
def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardDecline::actioner]
|
1283
1463
|
end
|
1284
1464
|
|
1465
|
+
type additional_amounts =
|
1466
|
+
{
|
1467
|
+
clinic: Increase::CardPayment::Element::CardDecline::AdditionalAmounts::Clinic?,
|
1468
|
+
dental: Increase::CardPayment::Element::CardDecline::AdditionalAmounts::Dental?,
|
1469
|
+
prescription: Increase::CardPayment::Element::CardDecline::AdditionalAmounts::Prescription?,
|
1470
|
+
surcharge: Increase::CardPayment::Element::CardDecline::AdditionalAmounts::Surcharge?,
|
1471
|
+
total_cumulative: Increase::CardPayment::Element::CardDecline::AdditionalAmounts::TotalCumulative?,
|
1472
|
+
total_healthcare: Increase::CardPayment::Element::CardDecline::AdditionalAmounts::TotalHealthcare?,
|
1473
|
+
transit: Increase::CardPayment::Element::CardDecline::AdditionalAmounts::Transit?,
|
1474
|
+
unknown: Increase::CardPayment::Element::CardDecline::AdditionalAmounts::Unknown?,
|
1475
|
+
vision: Increase::CardPayment::Element::CardDecline::AdditionalAmounts::Vision?
|
1476
|
+
}
|
1477
|
+
|
1478
|
+
class AdditionalAmounts < Increase::Internal::Type::BaseModel
|
1479
|
+
attr_accessor clinic: Increase::CardPayment::Element::CardDecline::AdditionalAmounts::Clinic?
|
1480
|
+
|
1481
|
+
attr_accessor dental: Increase::CardPayment::Element::CardDecline::AdditionalAmounts::Dental?
|
1482
|
+
|
1483
|
+
attr_accessor prescription: Increase::CardPayment::Element::CardDecline::AdditionalAmounts::Prescription?
|
1484
|
+
|
1485
|
+
attr_accessor surcharge: Increase::CardPayment::Element::CardDecline::AdditionalAmounts::Surcharge?
|
1486
|
+
|
1487
|
+
attr_accessor total_cumulative: Increase::CardPayment::Element::CardDecline::AdditionalAmounts::TotalCumulative?
|
1488
|
+
|
1489
|
+
attr_accessor total_healthcare: Increase::CardPayment::Element::CardDecline::AdditionalAmounts::TotalHealthcare?
|
1490
|
+
|
1491
|
+
attr_accessor transit: Increase::CardPayment::Element::CardDecline::AdditionalAmounts::Transit?
|
1492
|
+
|
1493
|
+
attr_accessor unknown: Increase::CardPayment::Element::CardDecline::AdditionalAmounts::Unknown?
|
1494
|
+
|
1495
|
+
attr_accessor vision: Increase::CardPayment::Element::CardDecline::AdditionalAmounts::Vision?
|
1496
|
+
|
1497
|
+
def initialize: (
|
1498
|
+
clinic: Increase::CardPayment::Element::CardDecline::AdditionalAmounts::Clinic?,
|
1499
|
+
dental: Increase::CardPayment::Element::CardDecline::AdditionalAmounts::Dental?,
|
1500
|
+
prescription: Increase::CardPayment::Element::CardDecline::AdditionalAmounts::Prescription?,
|
1501
|
+
surcharge: Increase::CardPayment::Element::CardDecline::AdditionalAmounts::Surcharge?,
|
1502
|
+
total_cumulative: Increase::CardPayment::Element::CardDecline::AdditionalAmounts::TotalCumulative?,
|
1503
|
+
total_healthcare: Increase::CardPayment::Element::CardDecline::AdditionalAmounts::TotalHealthcare?,
|
1504
|
+
transit: Increase::CardPayment::Element::CardDecline::AdditionalAmounts::Transit?,
|
1505
|
+
unknown: Increase::CardPayment::Element::CardDecline::AdditionalAmounts::Unknown?,
|
1506
|
+
vision: Increase::CardPayment::Element::CardDecline::AdditionalAmounts::Vision?
|
1507
|
+
) -> void
|
1508
|
+
|
1509
|
+
def to_hash: -> {
|
1510
|
+
clinic: Increase::CardPayment::Element::CardDecline::AdditionalAmounts::Clinic?,
|
1511
|
+
dental: Increase::CardPayment::Element::CardDecline::AdditionalAmounts::Dental?,
|
1512
|
+
prescription: Increase::CardPayment::Element::CardDecline::AdditionalAmounts::Prescription?,
|
1513
|
+
surcharge: Increase::CardPayment::Element::CardDecline::AdditionalAmounts::Surcharge?,
|
1514
|
+
total_cumulative: Increase::CardPayment::Element::CardDecline::AdditionalAmounts::TotalCumulative?,
|
1515
|
+
total_healthcare: Increase::CardPayment::Element::CardDecline::AdditionalAmounts::TotalHealthcare?,
|
1516
|
+
transit: Increase::CardPayment::Element::CardDecline::AdditionalAmounts::Transit?,
|
1517
|
+
unknown: Increase::CardPayment::Element::CardDecline::AdditionalAmounts::Unknown?,
|
1518
|
+
vision: Increase::CardPayment::Element::CardDecline::AdditionalAmounts::Vision?
|
1519
|
+
}
|
1520
|
+
|
1521
|
+
type clinic = { amount: Integer, currency: String }
|
1522
|
+
|
1523
|
+
class Clinic < Increase::Internal::Type::BaseModel
|
1524
|
+
attr_accessor amount: Integer
|
1525
|
+
|
1526
|
+
attr_accessor currency: String
|
1527
|
+
|
1528
|
+
def initialize: (amount: Integer, currency: String) -> void
|
1529
|
+
|
1530
|
+
def to_hash: -> { amount: Integer, currency: String }
|
1531
|
+
end
|
1532
|
+
|
1533
|
+
type dental = { amount: Integer, currency: String }
|
1534
|
+
|
1535
|
+
class Dental < Increase::Internal::Type::BaseModel
|
1536
|
+
attr_accessor amount: Integer
|
1537
|
+
|
1538
|
+
attr_accessor currency: String
|
1539
|
+
|
1540
|
+
def initialize: (amount: Integer, currency: String) -> void
|
1541
|
+
|
1542
|
+
def to_hash: -> { amount: Integer, currency: String }
|
1543
|
+
end
|
1544
|
+
|
1545
|
+
type prescription = { amount: Integer, currency: String }
|
1546
|
+
|
1547
|
+
class Prescription < Increase::Internal::Type::BaseModel
|
1548
|
+
attr_accessor amount: Integer
|
1549
|
+
|
1550
|
+
attr_accessor currency: String
|
1551
|
+
|
1552
|
+
def initialize: (amount: Integer, currency: String) -> void
|
1553
|
+
|
1554
|
+
def to_hash: -> { amount: Integer, currency: String }
|
1555
|
+
end
|
1556
|
+
|
1557
|
+
type surcharge = { amount: Integer, currency: String }
|
1558
|
+
|
1559
|
+
class Surcharge < Increase::Internal::Type::BaseModel
|
1560
|
+
attr_accessor amount: Integer
|
1561
|
+
|
1562
|
+
attr_accessor currency: String
|
1563
|
+
|
1564
|
+
def initialize: (amount: Integer, currency: String) -> void
|
1565
|
+
|
1566
|
+
def to_hash: -> { amount: Integer, currency: String }
|
1567
|
+
end
|
1568
|
+
|
1569
|
+
type total_cumulative = { amount: Integer, currency: String }
|
1570
|
+
|
1571
|
+
class TotalCumulative < Increase::Internal::Type::BaseModel
|
1572
|
+
attr_accessor amount: Integer
|
1573
|
+
|
1574
|
+
attr_accessor currency: String
|
1575
|
+
|
1576
|
+
def initialize: (amount: Integer, currency: String) -> void
|
1577
|
+
|
1578
|
+
def to_hash: -> { amount: Integer, currency: String }
|
1579
|
+
end
|
1580
|
+
|
1581
|
+
type total_healthcare = { amount: Integer, currency: String }
|
1582
|
+
|
1583
|
+
class TotalHealthcare < Increase::Internal::Type::BaseModel
|
1584
|
+
attr_accessor amount: Integer
|
1585
|
+
|
1586
|
+
attr_accessor currency: String
|
1587
|
+
|
1588
|
+
def initialize: (amount: Integer, currency: String) -> void
|
1589
|
+
|
1590
|
+
def to_hash: -> { amount: Integer, currency: String }
|
1591
|
+
end
|
1592
|
+
|
1593
|
+
type transit = { amount: Integer, currency: String }
|
1594
|
+
|
1595
|
+
class Transit < Increase::Internal::Type::BaseModel
|
1596
|
+
attr_accessor amount: Integer
|
1597
|
+
|
1598
|
+
attr_accessor currency: String
|
1599
|
+
|
1600
|
+
def initialize: (amount: Integer, currency: String) -> void
|
1601
|
+
|
1602
|
+
def to_hash: -> { amount: Integer, currency: String }
|
1603
|
+
end
|
1604
|
+
|
1605
|
+
type unknown = { amount: Integer, currency: String }
|
1606
|
+
|
1607
|
+
class Unknown < Increase::Internal::Type::BaseModel
|
1608
|
+
attr_accessor amount: Integer
|
1609
|
+
|
1610
|
+
attr_accessor currency: String
|
1611
|
+
|
1612
|
+
def initialize: (amount: Integer, currency: String) -> void
|
1613
|
+
|
1614
|
+
def to_hash: -> { amount: Integer, currency: String }
|
1615
|
+
end
|
1616
|
+
|
1617
|
+
type vision = { amount: Integer, currency: String }
|
1618
|
+
|
1619
|
+
class Vision < Increase::Internal::Type::BaseModel
|
1620
|
+
attr_accessor amount: Integer
|
1621
|
+
|
1622
|
+
attr_accessor currency: String
|
1623
|
+
|
1624
|
+
def initialize: (amount: Integer, currency: String) -> void
|
1625
|
+
|
1626
|
+
def to_hash: -> { amount: Integer, currency: String }
|
1627
|
+
end
|
1628
|
+
end
|
1629
|
+
|
1285
1630
|
type currency = :CAD | :CHF | :EUR | :GBP | :JPY | :USD
|
1286
1631
|
|
1287
1632
|
module Currency
|
@@ -1953,6 +2298,7 @@ module Increase
|
|
1953
2298
|
{
|
1954
2299
|
id: String,
|
1955
2300
|
actioner: Increase::Models::CardPayment::Element::CardIncrement::actioner,
|
2301
|
+
additional_amounts: Increase::CardPayment::Element::CardIncrement::AdditionalAmounts,
|
1956
2302
|
amount: Integer,
|
1957
2303
|
card_authorization_id: String,
|
1958
2304
|
currency: Increase::Models::CardPayment::Element::CardIncrement::currency,
|
@@ -1960,6 +2306,8 @@ module Increase
|
|
1960
2306
|
network_identifiers: Increase::CardPayment::Element::CardIncrement::NetworkIdentifiers,
|
1961
2307
|
network_risk_score: Integer?,
|
1962
2308
|
pending_transaction_id: String?,
|
2309
|
+
presentment_amount: Integer,
|
2310
|
+
presentment_currency: String,
|
1963
2311
|
real_time_decision_id: String?,
|
1964
2312
|
type: Increase::Models::CardPayment::Element::CardIncrement::type_,
|
1965
2313
|
updated_authorization_amount: Integer
|
@@ -1970,6 +2318,8 @@ module Increase
|
|
1970
2318
|
|
1971
2319
|
attr_accessor actioner: Increase::Models::CardPayment::Element::CardIncrement::actioner
|
1972
2320
|
|
2321
|
+
attr_accessor additional_amounts: Increase::CardPayment::Element::CardIncrement::AdditionalAmounts
|
2322
|
+
|
1973
2323
|
attr_accessor amount: Integer
|
1974
2324
|
|
1975
2325
|
attr_accessor card_authorization_id: String
|
@@ -1984,6 +2334,10 @@ module Increase
|
|
1984
2334
|
|
1985
2335
|
attr_accessor pending_transaction_id: String?
|
1986
2336
|
|
2337
|
+
attr_accessor presentment_amount: Integer
|
2338
|
+
|
2339
|
+
attr_accessor presentment_currency: String
|
2340
|
+
|
1987
2341
|
attr_accessor real_time_decision_id: String?
|
1988
2342
|
|
1989
2343
|
attr_accessor type: Increase::Models::CardPayment::Element::CardIncrement::type_
|
@@ -1993,6 +2347,7 @@ module Increase
|
|
1993
2347
|
def initialize: (
|
1994
2348
|
id: String,
|
1995
2349
|
actioner: Increase::Models::CardPayment::Element::CardIncrement::actioner,
|
2350
|
+
additional_amounts: Increase::CardPayment::Element::CardIncrement::AdditionalAmounts,
|
1996
2351
|
amount: Integer,
|
1997
2352
|
card_authorization_id: String,
|
1998
2353
|
currency: Increase::Models::CardPayment::Element::CardIncrement::currency,
|
@@ -2000,6 +2355,8 @@ module Increase
|
|
2000
2355
|
network_identifiers: Increase::CardPayment::Element::CardIncrement::NetworkIdentifiers,
|
2001
2356
|
network_risk_score: Integer?,
|
2002
2357
|
pending_transaction_id: String?,
|
2358
|
+
presentment_amount: Integer,
|
2359
|
+
presentment_currency: String,
|
2003
2360
|
real_time_decision_id: String?,
|
2004
2361
|
type: Increase::Models::CardPayment::Element::CardIncrement::type_,
|
2005
2362
|
updated_authorization_amount: Integer
|
@@ -2008,6 +2365,7 @@ module Increase
|
|
2008
2365
|
def to_hash: -> {
|
2009
2366
|
id: String,
|
2010
2367
|
actioner: Increase::Models::CardPayment::Element::CardIncrement::actioner,
|
2368
|
+
additional_amounts: Increase::CardPayment::Element::CardIncrement::AdditionalAmounts,
|
2011
2369
|
amount: Integer,
|
2012
2370
|
card_authorization_id: String,
|
2013
2371
|
currency: Increase::Models::CardPayment::Element::CardIncrement::currency,
|
@@ -2015,6 +2373,8 @@ module Increase
|
|
2015
2373
|
network_identifiers: Increase::CardPayment::Element::CardIncrement::NetworkIdentifiers,
|
2016
2374
|
network_risk_score: Integer?,
|
2017
2375
|
pending_transaction_id: String?,
|
2376
|
+
presentment_amount: Integer,
|
2377
|
+
presentment_currency: String,
|
2018
2378
|
real_time_decision_id: String?,
|
2019
2379
|
type: Increase::Models::CardPayment::Element::CardIncrement::type_,
|
2020
2380
|
updated_authorization_amount: Integer
|
@@ -2037,6 +2397,171 @@ module Increase
|
|
2037
2397
|
def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardIncrement::actioner]
|
2038
2398
|
end
|
2039
2399
|
|
2400
|
+
type additional_amounts =
|
2401
|
+
{
|
2402
|
+
clinic: Increase::CardPayment::Element::CardIncrement::AdditionalAmounts::Clinic?,
|
2403
|
+
dental: Increase::CardPayment::Element::CardIncrement::AdditionalAmounts::Dental?,
|
2404
|
+
prescription: Increase::CardPayment::Element::CardIncrement::AdditionalAmounts::Prescription?,
|
2405
|
+
surcharge: Increase::CardPayment::Element::CardIncrement::AdditionalAmounts::Surcharge?,
|
2406
|
+
total_cumulative: Increase::CardPayment::Element::CardIncrement::AdditionalAmounts::TotalCumulative?,
|
2407
|
+
total_healthcare: Increase::CardPayment::Element::CardIncrement::AdditionalAmounts::TotalHealthcare?,
|
2408
|
+
transit: Increase::CardPayment::Element::CardIncrement::AdditionalAmounts::Transit?,
|
2409
|
+
unknown: Increase::CardPayment::Element::CardIncrement::AdditionalAmounts::Unknown?,
|
2410
|
+
vision: Increase::CardPayment::Element::CardIncrement::AdditionalAmounts::Vision?
|
2411
|
+
}
|
2412
|
+
|
2413
|
+
class AdditionalAmounts < Increase::Internal::Type::BaseModel
|
2414
|
+
attr_accessor clinic: Increase::CardPayment::Element::CardIncrement::AdditionalAmounts::Clinic?
|
2415
|
+
|
2416
|
+
attr_accessor dental: Increase::CardPayment::Element::CardIncrement::AdditionalAmounts::Dental?
|
2417
|
+
|
2418
|
+
attr_accessor prescription: Increase::CardPayment::Element::CardIncrement::AdditionalAmounts::Prescription?
|
2419
|
+
|
2420
|
+
attr_accessor surcharge: Increase::CardPayment::Element::CardIncrement::AdditionalAmounts::Surcharge?
|
2421
|
+
|
2422
|
+
attr_accessor total_cumulative: Increase::CardPayment::Element::CardIncrement::AdditionalAmounts::TotalCumulative?
|
2423
|
+
|
2424
|
+
attr_accessor total_healthcare: Increase::CardPayment::Element::CardIncrement::AdditionalAmounts::TotalHealthcare?
|
2425
|
+
|
2426
|
+
attr_accessor transit: Increase::CardPayment::Element::CardIncrement::AdditionalAmounts::Transit?
|
2427
|
+
|
2428
|
+
attr_accessor unknown: Increase::CardPayment::Element::CardIncrement::AdditionalAmounts::Unknown?
|
2429
|
+
|
2430
|
+
attr_accessor vision: Increase::CardPayment::Element::CardIncrement::AdditionalAmounts::Vision?
|
2431
|
+
|
2432
|
+
def initialize: (
|
2433
|
+
clinic: Increase::CardPayment::Element::CardIncrement::AdditionalAmounts::Clinic?,
|
2434
|
+
dental: Increase::CardPayment::Element::CardIncrement::AdditionalAmounts::Dental?,
|
2435
|
+
prescription: Increase::CardPayment::Element::CardIncrement::AdditionalAmounts::Prescription?,
|
2436
|
+
surcharge: Increase::CardPayment::Element::CardIncrement::AdditionalAmounts::Surcharge?,
|
2437
|
+
total_cumulative: Increase::CardPayment::Element::CardIncrement::AdditionalAmounts::TotalCumulative?,
|
2438
|
+
total_healthcare: Increase::CardPayment::Element::CardIncrement::AdditionalAmounts::TotalHealthcare?,
|
2439
|
+
transit: Increase::CardPayment::Element::CardIncrement::AdditionalAmounts::Transit?,
|
2440
|
+
unknown: Increase::CardPayment::Element::CardIncrement::AdditionalAmounts::Unknown?,
|
2441
|
+
vision: Increase::CardPayment::Element::CardIncrement::AdditionalAmounts::Vision?
|
2442
|
+
) -> void
|
2443
|
+
|
2444
|
+
def to_hash: -> {
|
2445
|
+
clinic: Increase::CardPayment::Element::CardIncrement::AdditionalAmounts::Clinic?,
|
2446
|
+
dental: Increase::CardPayment::Element::CardIncrement::AdditionalAmounts::Dental?,
|
2447
|
+
prescription: Increase::CardPayment::Element::CardIncrement::AdditionalAmounts::Prescription?,
|
2448
|
+
surcharge: Increase::CardPayment::Element::CardIncrement::AdditionalAmounts::Surcharge?,
|
2449
|
+
total_cumulative: Increase::CardPayment::Element::CardIncrement::AdditionalAmounts::TotalCumulative?,
|
2450
|
+
total_healthcare: Increase::CardPayment::Element::CardIncrement::AdditionalAmounts::TotalHealthcare?,
|
2451
|
+
transit: Increase::CardPayment::Element::CardIncrement::AdditionalAmounts::Transit?,
|
2452
|
+
unknown: Increase::CardPayment::Element::CardIncrement::AdditionalAmounts::Unknown?,
|
2453
|
+
vision: Increase::CardPayment::Element::CardIncrement::AdditionalAmounts::Vision?
|
2454
|
+
}
|
2455
|
+
|
2456
|
+
type clinic = { amount: Integer, currency: String }
|
2457
|
+
|
2458
|
+
class Clinic < Increase::Internal::Type::BaseModel
|
2459
|
+
attr_accessor amount: Integer
|
2460
|
+
|
2461
|
+
attr_accessor currency: String
|
2462
|
+
|
2463
|
+
def initialize: (amount: Integer, currency: String) -> void
|
2464
|
+
|
2465
|
+
def to_hash: -> { amount: Integer, currency: String }
|
2466
|
+
end
|
2467
|
+
|
2468
|
+
type dental = { amount: Integer, currency: String }
|
2469
|
+
|
2470
|
+
class Dental < Increase::Internal::Type::BaseModel
|
2471
|
+
attr_accessor amount: Integer
|
2472
|
+
|
2473
|
+
attr_accessor currency: String
|
2474
|
+
|
2475
|
+
def initialize: (amount: Integer, currency: String) -> void
|
2476
|
+
|
2477
|
+
def to_hash: -> { amount: Integer, currency: String }
|
2478
|
+
end
|
2479
|
+
|
2480
|
+
type prescription = { amount: Integer, currency: String }
|
2481
|
+
|
2482
|
+
class Prescription < Increase::Internal::Type::BaseModel
|
2483
|
+
attr_accessor amount: Integer
|
2484
|
+
|
2485
|
+
attr_accessor currency: String
|
2486
|
+
|
2487
|
+
def initialize: (amount: Integer, currency: String) -> void
|
2488
|
+
|
2489
|
+
def to_hash: -> { amount: Integer, currency: String }
|
2490
|
+
end
|
2491
|
+
|
2492
|
+
type surcharge = { amount: Integer, currency: String }
|
2493
|
+
|
2494
|
+
class Surcharge < Increase::Internal::Type::BaseModel
|
2495
|
+
attr_accessor amount: Integer
|
2496
|
+
|
2497
|
+
attr_accessor currency: String
|
2498
|
+
|
2499
|
+
def initialize: (amount: Integer, currency: String) -> void
|
2500
|
+
|
2501
|
+
def to_hash: -> { amount: Integer, currency: String }
|
2502
|
+
end
|
2503
|
+
|
2504
|
+
type total_cumulative = { amount: Integer, currency: String }
|
2505
|
+
|
2506
|
+
class TotalCumulative < Increase::Internal::Type::BaseModel
|
2507
|
+
attr_accessor amount: Integer
|
2508
|
+
|
2509
|
+
attr_accessor currency: String
|
2510
|
+
|
2511
|
+
def initialize: (amount: Integer, currency: String) -> void
|
2512
|
+
|
2513
|
+
def to_hash: -> { amount: Integer, currency: String }
|
2514
|
+
end
|
2515
|
+
|
2516
|
+
type total_healthcare = { amount: Integer, currency: String }
|
2517
|
+
|
2518
|
+
class TotalHealthcare < Increase::Internal::Type::BaseModel
|
2519
|
+
attr_accessor amount: Integer
|
2520
|
+
|
2521
|
+
attr_accessor currency: String
|
2522
|
+
|
2523
|
+
def initialize: (amount: Integer, currency: String) -> void
|
2524
|
+
|
2525
|
+
def to_hash: -> { amount: Integer, currency: String }
|
2526
|
+
end
|
2527
|
+
|
2528
|
+
type transit = { amount: Integer, currency: String }
|
2529
|
+
|
2530
|
+
class Transit < Increase::Internal::Type::BaseModel
|
2531
|
+
attr_accessor amount: Integer
|
2532
|
+
|
2533
|
+
attr_accessor currency: String
|
2534
|
+
|
2535
|
+
def initialize: (amount: Integer, currency: String) -> void
|
2536
|
+
|
2537
|
+
def to_hash: -> { amount: Integer, currency: String }
|
2538
|
+
end
|
2539
|
+
|
2540
|
+
type unknown = { amount: Integer, currency: String }
|
2541
|
+
|
2542
|
+
class Unknown < Increase::Internal::Type::BaseModel
|
2543
|
+
attr_accessor amount: Integer
|
2544
|
+
|
2545
|
+
attr_accessor currency: String
|
2546
|
+
|
2547
|
+
def initialize: (amount: Integer, currency: String) -> void
|
2548
|
+
|
2549
|
+
def to_hash: -> { amount: Integer, currency: String }
|
2550
|
+
end
|
2551
|
+
|
2552
|
+
type vision = { amount: Integer, currency: String }
|
2553
|
+
|
2554
|
+
class Vision < Increase::Internal::Type::BaseModel
|
2555
|
+
attr_accessor amount: Integer
|
2556
|
+
|
2557
|
+
attr_accessor currency: String
|
2558
|
+
|
2559
|
+
def initialize: (amount: Integer, currency: String) -> void
|
2560
|
+
|
2561
|
+
def to_hash: -> { amount: Integer, currency: String }
|
2562
|
+
end
|
2563
|
+
end
|
2564
|
+
|
2040
2565
|
type currency = :CAD | :CHF | :EUR | :GBP | :JPY | :USD
|
2041
2566
|
|
2042
2567
|
module Currency
|
@@ -4393,6 +4918,7 @@ module Increase
|
|
4393
4918
|
{
|
4394
4919
|
id: String,
|
4395
4920
|
actioner: Increase::Models::CardPayment::Element::CardValidation::actioner,
|
4921
|
+
additional_amounts: Increase::CardPayment::Element::CardValidation::AdditionalAmounts,
|
4396
4922
|
card_payment_id: String,
|
4397
4923
|
currency: Increase::Models::CardPayment::Element::CardValidation::currency,
|
4398
4924
|
digital_wallet_token_id: String?,
|
@@ -4418,6 +4944,8 @@ module Increase
|
|
4418
4944
|
|
4419
4945
|
attr_accessor actioner: Increase::Models::CardPayment::Element::CardValidation::actioner
|
4420
4946
|
|
4947
|
+
attr_accessor additional_amounts: Increase::CardPayment::Element::CardValidation::AdditionalAmounts
|
4948
|
+
|
4421
4949
|
attr_accessor card_payment_id: String
|
4422
4950
|
|
4423
4951
|
attr_accessor currency: Increase::Models::CardPayment::Element::CardValidation::currency
|
@@ -4457,6 +4985,7 @@ module Increase
|
|
4457
4985
|
def initialize: (
|
4458
4986
|
id: String,
|
4459
4987
|
actioner: Increase::Models::CardPayment::Element::CardValidation::actioner,
|
4988
|
+
additional_amounts: Increase::CardPayment::Element::CardValidation::AdditionalAmounts,
|
4460
4989
|
card_payment_id: String,
|
4461
4990
|
currency: Increase::Models::CardPayment::Element::CardValidation::currency,
|
4462
4991
|
digital_wallet_token_id: String?,
|
@@ -4480,6 +5009,7 @@ module Increase
|
|
4480
5009
|
def to_hash: -> {
|
4481
5010
|
id: String,
|
4482
5011
|
actioner: Increase::Models::CardPayment::Element::CardValidation::actioner,
|
5012
|
+
additional_amounts: Increase::CardPayment::Element::CardValidation::AdditionalAmounts,
|
4483
5013
|
card_payment_id: String,
|
4484
5014
|
currency: Increase::Models::CardPayment::Element::CardValidation::currency,
|
4485
5015
|
digital_wallet_token_id: String?,
|
@@ -4517,6 +5047,171 @@ module Increase
|
|
4517
5047
|
def self?.values: -> ::Array[Increase::Models::CardPayment::Element::CardValidation::actioner]
|
4518
5048
|
end
|
4519
5049
|
|
5050
|
+
type additional_amounts =
|
5051
|
+
{
|
5052
|
+
clinic: Increase::CardPayment::Element::CardValidation::AdditionalAmounts::Clinic?,
|
5053
|
+
dental: Increase::CardPayment::Element::CardValidation::AdditionalAmounts::Dental?,
|
5054
|
+
prescription: Increase::CardPayment::Element::CardValidation::AdditionalAmounts::Prescription?,
|
5055
|
+
surcharge: Increase::CardPayment::Element::CardValidation::AdditionalAmounts::Surcharge?,
|
5056
|
+
total_cumulative: Increase::CardPayment::Element::CardValidation::AdditionalAmounts::TotalCumulative?,
|
5057
|
+
total_healthcare: Increase::CardPayment::Element::CardValidation::AdditionalAmounts::TotalHealthcare?,
|
5058
|
+
transit: Increase::CardPayment::Element::CardValidation::AdditionalAmounts::Transit?,
|
5059
|
+
unknown: Increase::CardPayment::Element::CardValidation::AdditionalAmounts::Unknown?,
|
5060
|
+
vision: Increase::CardPayment::Element::CardValidation::AdditionalAmounts::Vision?
|
5061
|
+
}
|
5062
|
+
|
5063
|
+
class AdditionalAmounts < Increase::Internal::Type::BaseModel
|
5064
|
+
attr_accessor clinic: Increase::CardPayment::Element::CardValidation::AdditionalAmounts::Clinic?
|
5065
|
+
|
5066
|
+
attr_accessor dental: Increase::CardPayment::Element::CardValidation::AdditionalAmounts::Dental?
|
5067
|
+
|
5068
|
+
attr_accessor prescription: Increase::CardPayment::Element::CardValidation::AdditionalAmounts::Prescription?
|
5069
|
+
|
5070
|
+
attr_accessor surcharge: Increase::CardPayment::Element::CardValidation::AdditionalAmounts::Surcharge?
|
5071
|
+
|
5072
|
+
attr_accessor total_cumulative: Increase::CardPayment::Element::CardValidation::AdditionalAmounts::TotalCumulative?
|
5073
|
+
|
5074
|
+
attr_accessor total_healthcare: Increase::CardPayment::Element::CardValidation::AdditionalAmounts::TotalHealthcare?
|
5075
|
+
|
5076
|
+
attr_accessor transit: Increase::CardPayment::Element::CardValidation::AdditionalAmounts::Transit?
|
5077
|
+
|
5078
|
+
attr_accessor unknown: Increase::CardPayment::Element::CardValidation::AdditionalAmounts::Unknown?
|
5079
|
+
|
5080
|
+
attr_accessor vision: Increase::CardPayment::Element::CardValidation::AdditionalAmounts::Vision?
|
5081
|
+
|
5082
|
+
def initialize: (
|
5083
|
+
clinic: Increase::CardPayment::Element::CardValidation::AdditionalAmounts::Clinic?,
|
5084
|
+
dental: Increase::CardPayment::Element::CardValidation::AdditionalAmounts::Dental?,
|
5085
|
+
prescription: Increase::CardPayment::Element::CardValidation::AdditionalAmounts::Prescription?,
|
5086
|
+
surcharge: Increase::CardPayment::Element::CardValidation::AdditionalAmounts::Surcharge?,
|
5087
|
+
total_cumulative: Increase::CardPayment::Element::CardValidation::AdditionalAmounts::TotalCumulative?,
|
5088
|
+
total_healthcare: Increase::CardPayment::Element::CardValidation::AdditionalAmounts::TotalHealthcare?,
|
5089
|
+
transit: Increase::CardPayment::Element::CardValidation::AdditionalAmounts::Transit?,
|
5090
|
+
unknown: Increase::CardPayment::Element::CardValidation::AdditionalAmounts::Unknown?,
|
5091
|
+
vision: Increase::CardPayment::Element::CardValidation::AdditionalAmounts::Vision?
|
5092
|
+
) -> void
|
5093
|
+
|
5094
|
+
def to_hash: -> {
|
5095
|
+
clinic: Increase::CardPayment::Element::CardValidation::AdditionalAmounts::Clinic?,
|
5096
|
+
dental: Increase::CardPayment::Element::CardValidation::AdditionalAmounts::Dental?,
|
5097
|
+
prescription: Increase::CardPayment::Element::CardValidation::AdditionalAmounts::Prescription?,
|
5098
|
+
surcharge: Increase::CardPayment::Element::CardValidation::AdditionalAmounts::Surcharge?,
|
5099
|
+
total_cumulative: Increase::CardPayment::Element::CardValidation::AdditionalAmounts::TotalCumulative?,
|
5100
|
+
total_healthcare: Increase::CardPayment::Element::CardValidation::AdditionalAmounts::TotalHealthcare?,
|
5101
|
+
transit: Increase::CardPayment::Element::CardValidation::AdditionalAmounts::Transit?,
|
5102
|
+
unknown: Increase::CardPayment::Element::CardValidation::AdditionalAmounts::Unknown?,
|
5103
|
+
vision: Increase::CardPayment::Element::CardValidation::AdditionalAmounts::Vision?
|
5104
|
+
}
|
5105
|
+
|
5106
|
+
type clinic = { amount: Integer, currency: String }
|
5107
|
+
|
5108
|
+
class Clinic < Increase::Internal::Type::BaseModel
|
5109
|
+
attr_accessor amount: Integer
|
5110
|
+
|
5111
|
+
attr_accessor currency: String
|
5112
|
+
|
5113
|
+
def initialize: (amount: Integer, currency: String) -> void
|
5114
|
+
|
5115
|
+
def to_hash: -> { amount: Integer, currency: String }
|
5116
|
+
end
|
5117
|
+
|
5118
|
+
type dental = { amount: Integer, currency: String }
|
5119
|
+
|
5120
|
+
class Dental < Increase::Internal::Type::BaseModel
|
5121
|
+
attr_accessor amount: Integer
|
5122
|
+
|
5123
|
+
attr_accessor currency: String
|
5124
|
+
|
5125
|
+
def initialize: (amount: Integer, currency: String) -> void
|
5126
|
+
|
5127
|
+
def to_hash: -> { amount: Integer, currency: String }
|
5128
|
+
end
|
5129
|
+
|
5130
|
+
type prescription = { amount: Integer, currency: String }
|
5131
|
+
|
5132
|
+
class Prescription < Increase::Internal::Type::BaseModel
|
5133
|
+
attr_accessor amount: Integer
|
5134
|
+
|
5135
|
+
attr_accessor currency: String
|
5136
|
+
|
5137
|
+
def initialize: (amount: Integer, currency: String) -> void
|
5138
|
+
|
5139
|
+
def to_hash: -> { amount: Integer, currency: String }
|
5140
|
+
end
|
5141
|
+
|
5142
|
+
type surcharge = { amount: Integer, currency: String }
|
5143
|
+
|
5144
|
+
class Surcharge < Increase::Internal::Type::BaseModel
|
5145
|
+
attr_accessor amount: Integer
|
5146
|
+
|
5147
|
+
attr_accessor currency: String
|
5148
|
+
|
5149
|
+
def initialize: (amount: Integer, currency: String) -> void
|
5150
|
+
|
5151
|
+
def to_hash: -> { amount: Integer, currency: String }
|
5152
|
+
end
|
5153
|
+
|
5154
|
+
type total_cumulative = { amount: Integer, currency: String }
|
5155
|
+
|
5156
|
+
class TotalCumulative < Increase::Internal::Type::BaseModel
|
5157
|
+
attr_accessor amount: Integer
|
5158
|
+
|
5159
|
+
attr_accessor currency: String
|
5160
|
+
|
5161
|
+
def initialize: (amount: Integer, currency: String) -> void
|
5162
|
+
|
5163
|
+
def to_hash: -> { amount: Integer, currency: String }
|
5164
|
+
end
|
5165
|
+
|
5166
|
+
type total_healthcare = { amount: Integer, currency: String }
|
5167
|
+
|
5168
|
+
class TotalHealthcare < Increase::Internal::Type::BaseModel
|
5169
|
+
attr_accessor amount: Integer
|
5170
|
+
|
5171
|
+
attr_accessor currency: String
|
5172
|
+
|
5173
|
+
def initialize: (amount: Integer, currency: String) -> void
|
5174
|
+
|
5175
|
+
def to_hash: -> { amount: Integer, currency: String }
|
5176
|
+
end
|
5177
|
+
|
5178
|
+
type transit = { amount: Integer, currency: String }
|
5179
|
+
|
5180
|
+
class Transit < Increase::Internal::Type::BaseModel
|
5181
|
+
attr_accessor amount: Integer
|
5182
|
+
|
5183
|
+
attr_accessor currency: String
|
5184
|
+
|
5185
|
+
def initialize: (amount: Integer, currency: String) -> void
|
5186
|
+
|
5187
|
+
def to_hash: -> { amount: Integer, currency: String }
|
5188
|
+
end
|
5189
|
+
|
5190
|
+
type unknown = { amount: Integer, currency: String }
|
5191
|
+
|
5192
|
+
class Unknown < Increase::Internal::Type::BaseModel
|
5193
|
+
attr_accessor amount: Integer
|
5194
|
+
|
5195
|
+
attr_accessor currency: String
|
5196
|
+
|
5197
|
+
def initialize: (amount: Integer, currency: String) -> void
|
5198
|
+
|
5199
|
+
def to_hash: -> { amount: Integer, currency: String }
|
5200
|
+
end
|
5201
|
+
|
5202
|
+
type vision = { amount: Integer, currency: String }
|
5203
|
+
|
5204
|
+
class Vision < Increase::Internal::Type::BaseModel
|
5205
|
+
attr_accessor amount: Integer
|
5206
|
+
|
5207
|
+
attr_accessor currency: String
|
5208
|
+
|
5209
|
+
def initialize: (amount: Integer, currency: String) -> void
|
5210
|
+
|
5211
|
+
def to_hash: -> { amount: Integer, currency: String }
|
5212
|
+
end
|
5213
|
+
end
|
5214
|
+
|
4520
5215
|
type currency = :CAD | :CHF | :EUR | :GBP | :JPY | :USD
|
4521
5216
|
|
4522
5217
|
module Currency
|