|
16 | 16 | "ElementCardAuthorizationAdditionalAmounts", |
17 | 17 | "ElementCardAuthorizationAdditionalAmountsClinic", |
18 | 18 | "ElementCardAuthorizationAdditionalAmountsDental", |
| 19 | + "ElementCardAuthorizationAdditionalAmountsOriginal", |
19 | 20 | "ElementCardAuthorizationAdditionalAmountsPrescription", |
20 | 21 | "ElementCardAuthorizationAdditionalAmountsSurcharge", |
21 | 22 | "ElementCardAuthorizationAdditionalAmountsTotalCumulative", |
|
34 | 35 | "ElementCardDeclineAdditionalAmounts", |
35 | 36 | "ElementCardDeclineAdditionalAmountsClinic", |
36 | 37 | "ElementCardDeclineAdditionalAmountsDental", |
| 38 | + "ElementCardDeclineAdditionalAmountsOriginal", |
37 | 39 | "ElementCardDeclineAdditionalAmountsPrescription", |
38 | 40 | "ElementCardDeclineAdditionalAmountsSurcharge", |
39 | 41 | "ElementCardDeclineAdditionalAmountsTotalCumulative", |
|
53 | 55 | "ElementCardIncrementAdditionalAmounts", |
54 | 56 | "ElementCardIncrementAdditionalAmountsClinic", |
55 | 57 | "ElementCardIncrementAdditionalAmountsDental", |
| 58 | + "ElementCardIncrementAdditionalAmountsOriginal", |
56 | 59 | "ElementCardIncrementAdditionalAmountsPrescription", |
57 | 60 | "ElementCardIncrementAdditionalAmountsSurcharge", |
58 | 61 | "ElementCardIncrementAdditionalAmountsTotalCumulative", |
|
90 | 93 | "ElementCardValidationAdditionalAmounts", |
91 | 94 | "ElementCardValidationAdditionalAmountsClinic", |
92 | 95 | "ElementCardValidationAdditionalAmountsDental", |
| 96 | + "ElementCardValidationAdditionalAmountsOriginal", |
93 | 97 | "ElementCardValidationAdditionalAmountsPrescription", |
94 | 98 | "ElementCardValidationAdditionalAmountsSurcharge", |
95 | 99 | "ElementCardValidationAdditionalAmountsTotalCumulative", |
@@ -304,6 +308,21 @@ class ElementCardAuthorizationAdditionalAmountsDental(BaseModel): |
304 | 308 | """ |
305 | 309 |
|
306 | 310 |
|
| 311 | +class ElementCardAuthorizationAdditionalAmountsOriginal(BaseModel): |
| 312 | + amount: int |
| 313 | + """The amount in minor units of the `currency` field. |
| 314 | +
|
| 315 | + The amount is positive if it is added to the amount (such as an ATM surcharge |
| 316 | + fee) and negative if it is subtracted from the amount (such as a discount). |
| 317 | + """ |
| 318 | + |
| 319 | + currency: str |
| 320 | + """ |
| 321 | + The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the additional |
| 322 | + amount's currency. |
| 323 | + """ |
| 324 | + |
| 325 | + |
307 | 326 | class ElementCardAuthorizationAdditionalAmountsPrescription(BaseModel): |
308 | 327 | amount: int |
309 | 328 | """The amount in minor units of the `currency` field. |
@@ -416,6 +435,9 @@ class ElementCardAuthorizationAdditionalAmounts(BaseModel): |
416 | 435 | dental: Optional[ElementCardAuthorizationAdditionalAmountsDental] = None |
417 | 436 | """The part of this transaction amount that was for dental-related services.""" |
418 | 437 |
|
| 438 | + original: Optional[ElementCardAuthorizationAdditionalAmountsOriginal] = None |
| 439 | + """The original pre-authorized amount.""" |
| 440 | + |
419 | 441 | prescription: Optional[ElementCardAuthorizationAdditionalAmountsPrescription] = None |
420 | 442 | """The part of this transaction amount that was for healthcare prescriptions.""" |
421 | 443 |
|
@@ -920,6 +942,21 @@ class ElementCardDeclineAdditionalAmountsDental(BaseModel): |
920 | 942 | """ |
921 | 943 |
|
922 | 944 |
|
| 945 | +class ElementCardDeclineAdditionalAmountsOriginal(BaseModel): |
| 946 | + amount: int |
| 947 | + """The amount in minor units of the `currency` field. |
| 948 | +
|
| 949 | + The amount is positive if it is added to the amount (such as an ATM surcharge |
| 950 | + fee) and negative if it is subtracted from the amount (such as a discount). |
| 951 | + """ |
| 952 | + |
| 953 | + currency: str |
| 954 | + """ |
| 955 | + The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the additional |
| 956 | + amount's currency. |
| 957 | + """ |
| 958 | + |
| 959 | + |
923 | 960 | class ElementCardDeclineAdditionalAmountsPrescription(BaseModel): |
924 | 961 | amount: int |
925 | 962 | """The amount in minor units of the `currency` field. |
@@ -1032,6 +1069,9 @@ class ElementCardDeclineAdditionalAmounts(BaseModel): |
1032 | 1069 | dental: Optional[ElementCardDeclineAdditionalAmountsDental] = None |
1033 | 1070 | """The part of this transaction amount that was for dental-related services.""" |
1034 | 1071 |
|
| 1072 | + original: Optional[ElementCardDeclineAdditionalAmountsOriginal] = None |
| 1073 | + """The original pre-authorized amount.""" |
| 1074 | + |
1035 | 1075 | prescription: Optional[ElementCardDeclineAdditionalAmountsPrescription] = None |
1036 | 1076 | """The part of this transaction amount that was for healthcare prescriptions.""" |
1037 | 1077 |
|
@@ -1651,6 +1691,21 @@ class ElementCardIncrementAdditionalAmountsDental(BaseModel): |
1651 | 1691 | """ |
1652 | 1692 |
|
1653 | 1693 |
|
| 1694 | +class ElementCardIncrementAdditionalAmountsOriginal(BaseModel): |
| 1695 | + amount: int |
| 1696 | + """The amount in minor units of the `currency` field. |
| 1697 | +
|
| 1698 | + The amount is positive if it is added to the amount (such as an ATM surcharge |
| 1699 | + fee) and negative if it is subtracted from the amount (such as a discount). |
| 1700 | + """ |
| 1701 | + |
| 1702 | + currency: str |
| 1703 | + """ |
| 1704 | + The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the additional |
| 1705 | + amount's currency. |
| 1706 | + """ |
| 1707 | + |
| 1708 | + |
1654 | 1709 | class ElementCardIncrementAdditionalAmountsPrescription(BaseModel): |
1655 | 1710 | amount: int |
1656 | 1711 | """The amount in minor units of the `currency` field. |
@@ -1763,6 +1818,9 @@ class ElementCardIncrementAdditionalAmounts(BaseModel): |
1763 | 1818 | dental: Optional[ElementCardIncrementAdditionalAmountsDental] = None |
1764 | 1819 | """The part of this transaction amount that was for dental-related services.""" |
1765 | 1820 |
|
| 1821 | + original: Optional[ElementCardIncrementAdditionalAmountsOriginal] = None |
| 1822 | + """The original pre-authorized amount.""" |
| 1823 | + |
1766 | 1824 | prescription: Optional[ElementCardIncrementAdditionalAmountsPrescription] = None |
1767 | 1825 | """The part of this transaction amount that was for healthcare prescriptions.""" |
1768 | 1826 |
|
@@ -3252,6 +3310,21 @@ class ElementCardValidationAdditionalAmountsDental(BaseModel): |
3252 | 3310 | """ |
3253 | 3311 |
|
3254 | 3312 |
|
| 3313 | +class ElementCardValidationAdditionalAmountsOriginal(BaseModel): |
| 3314 | + amount: int |
| 3315 | + """The amount in minor units of the `currency` field. |
| 3316 | +
|
| 3317 | + The amount is positive if it is added to the amount (such as an ATM surcharge |
| 3318 | + fee) and negative if it is subtracted from the amount (such as a discount). |
| 3319 | + """ |
| 3320 | + |
| 3321 | + currency: str |
| 3322 | + """ |
| 3323 | + The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the additional |
| 3324 | + amount's currency. |
| 3325 | + """ |
| 3326 | + |
| 3327 | + |
3255 | 3328 | class ElementCardValidationAdditionalAmountsPrescription(BaseModel): |
3256 | 3329 | amount: int |
3257 | 3330 | """The amount in minor units of the `currency` field. |
@@ -3364,6 +3437,9 @@ class ElementCardValidationAdditionalAmounts(BaseModel): |
3364 | 3437 | dental: Optional[ElementCardValidationAdditionalAmountsDental] = None |
3365 | 3438 | """The part of this transaction amount that was for dental-related services.""" |
3366 | 3439 |
|
| 3440 | + original: Optional[ElementCardValidationAdditionalAmountsOriginal] = None |
| 3441 | + """The original pre-authorized amount.""" |
| 3442 | + |
3367 | 3443 | prescription: Optional[ElementCardValidationAdditionalAmountsPrescription] = None |
3368 | 3444 | """The part of this transaction amount that was for healthcare prescriptions.""" |
3369 | 3445 |
|
|
0 commit comments