@blockchyp/blockchyp-ts 2.25.0 → 2.27.2
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.
- package/_bundles/blockchyp.js +65 -18
- package/_bundles/blockchyp.js.map +1 -1
- package/_bundles/blockchyp.min.js +1 -1
- package/_bundles/blockchyp.min.js.map +1 -1
- package/lib/src/client.d.ts +1 -1
- package/lib/src/client.js +1 -1
- package/lib/src/models.d.ts +174 -18
- package/lib/src/models.js +64 -17
- package/lib/src/models.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +1 -1
- package/src/models.ts +274 -1
package/lib/src/client.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Copyright 2019-
|
|
2
|
+
* Copyright 2019-2026 BlockChyp, Inc. All rights reserved. Use of this code is governed
|
|
3
3
|
* by a license that can be found in the LICENSE file.
|
|
4
4
|
*
|
|
5
5
|
* This file was generated automatically by the BlockChyp SDK Generator. Changes to this
|
package/lib/src/client.js
CHANGED
|
@@ -37,7 +37,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
37
37
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
38
38
|
exports.newClient = exports.BlockChypCredentials = exports.BlockChypClient = exports.HealthcareType = exports.CVMType = exports.AVSResponse = exports.PromptType = exports.RoundingMode = exports.SignatureFormat = exports.CardType = void 0;
|
|
39
39
|
/**
|
|
40
|
-
* Copyright 2019-
|
|
40
|
+
* Copyright 2019-2026 BlockChyp, Inc. All rights reserved. Use of this code is governed
|
|
41
41
|
* by a license that can be found in the LICENSE file.
|
|
42
42
|
*
|
|
43
43
|
* This file was generated automatically by the BlockChyp SDK Generator. Changes to this
|
package/lib/src/models.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Copyright 2019-
|
|
2
|
+
* Copyright 2019-2026 BlockChyp, Inc. All rights reserved. Use of this code is governed
|
|
3
3
|
* by a license that can be found in the LICENSE file.
|
|
4
4
|
*
|
|
5
5
|
* This file was generated automatically by the BlockChyp SDK Generator. Changes to this
|
|
@@ -1188,11 +1188,27 @@ export declare class CustomerToken {
|
|
|
1188
1188
|
* Card bin.
|
|
1189
1189
|
*/
|
|
1190
1190
|
bin: string | null;
|
|
1191
|
+
/**
|
|
1192
|
+
* The card postal code.
|
|
1193
|
+
*/
|
|
1194
|
+
postalCode?: string;
|
|
1195
|
+
/**
|
|
1196
|
+
* The card address.
|
|
1197
|
+
*/
|
|
1198
|
+
address?: string;
|
|
1199
|
+
/**
|
|
1200
|
+
* The card country.
|
|
1201
|
+
*/
|
|
1202
|
+
country?: string;
|
|
1203
|
+
/**
|
|
1204
|
+
* The card holder name.
|
|
1205
|
+
*/
|
|
1206
|
+
cardHolderName?: string;
|
|
1191
1207
|
/**
|
|
1192
1208
|
* Models customer records associated with a payment token.
|
|
1193
1209
|
*/
|
|
1194
1210
|
customers: Customer[] | null;
|
|
1195
|
-
constructor(token?: string | null, maskedPan?: string | null, expiryMonth?: string | null, expiryYear?: string | null, paymentType?: string | null, accountType?: string | null, accountHolderType?: string | null, bankName?: string | null, routingNumber?: string | null, tokenHash?: string | null, bin?: string | null, customers?: Customer[] | null);
|
|
1211
|
+
constructor(token?: string | null, maskedPan?: string | null, expiryMonth?: string | null, expiryYear?: string | null, paymentType?: string | null, accountType?: string | null, accountHolderType?: string | null, bankName?: string | null, routingNumber?: string | null, tokenHash?: string | null, bin?: string | null, postalCode?: string | undefined, address?: string | undefined, country?: string | undefined, cardHolderName?: string | undefined, customers?: Customer[] | null);
|
|
1196
1212
|
}
|
|
1197
1213
|
/**
|
|
1198
1214
|
* The response to a text prompt request.
|
|
@@ -1361,6 +1377,10 @@ export declare class AuthorizationRequest {
|
|
|
1361
1377
|
* The cardholder postal code for use with address verification.
|
|
1362
1378
|
*/
|
|
1363
1379
|
postalCode?: string;
|
|
1380
|
+
/**
|
|
1381
|
+
* The cardholder country.
|
|
1382
|
+
*/
|
|
1383
|
+
country?: string;
|
|
1364
1384
|
/**
|
|
1365
1385
|
* That the payment entry method is a manual keyed transaction. If this is true, no other
|
|
1366
1386
|
* payment method will be accepted.
|
|
@@ -1582,9 +1602,21 @@ export declare class AuthorizationRequest {
|
|
|
1582
1602
|
* That this transaction will include a card metadata lookup.
|
|
1583
1603
|
*/
|
|
1584
1604
|
cardMetadataLookup?: boolean;
|
|
1585
|
-
|
|
1605
|
+
/**
|
|
1606
|
+
* The shipping cost associated with the transaction
|
|
1607
|
+
*/
|
|
1608
|
+
shippingAmount?: string;
|
|
1609
|
+
/**
|
|
1610
|
+
* The processor ID associated with the transaction
|
|
1611
|
+
*/
|
|
1612
|
+
processorId?: string;
|
|
1613
|
+
/**
|
|
1614
|
+
* The external customer ID associated with the transaction
|
|
1615
|
+
*/
|
|
1616
|
+
externalCustomerId?: string;
|
|
1617
|
+
constructor(timeout?: number | null, test?: boolean | null, transactionRef?: string | undefined, autogeneratedRef?: boolean | null, async?: boolean | null, queue?: boolean | null, waitForRemovedCard?: boolean, force?: boolean, orderRef?: string | undefined, destinationAccount?: string | undefined, testCase?: string | undefined, token?: string | undefined, track1?: string | undefined, track2?: string | undefined, pan?: string | undefined, routingNumber?: string | undefined, cardholderName?: string | undefined, expMonth?: string | undefined, expYear?: string | undefined, cvv?: string | undefined, address?: string | undefined, postalCode?: string | undefined, country?: string | undefined, manualEntry?: boolean, ksn?: string | undefined, pinBlock?: string | undefined, cardType?: CardType | undefined, paymentType?: string | undefined, currencyCode?: string | null, amount?: string | null, taxExempt?: boolean | null, surcharge?: boolean | null, cashDiscount?: boolean | null, sigFile?: string | undefined, sigFormat?: SignatureFormat | undefined, sigWidth?: number, disableSignature?: boolean, tipAmount?: string | undefined, taxAmount?: string | undefined, terminalName?: string | undefined, resetConnection?: boolean | null, transactionId?: string | undefined, onlineAuthCode?: string | undefined, enroll?: boolean, bypassDupeFilter?: boolean, description?: string | undefined, promptForTip?: boolean, cashBackEnabled?: boolean, cardOnFile?: boolean, recurring?: boolean, cit?: boolean, mit?: boolean, subscription?: boolean, purchaseOrderNumber?: string | undefined, supplierReferenceNumber?: string | undefined, lineItems?: TransactionDisplayItem[] | null, altPrices?: {
|
|
1586
1618
|
[key: string]: string;
|
|
1587
|
-
} | undefined, customer?: Customer | undefined, roundingMode?: RoundingMode | undefined, healthcareMetadata?: HealthcareMetadata | undefined, cryptocurrency?: string | undefined, cryptoNetwork?: string | undefined, cryptoReceiveAddress?: string | undefined, paymentRequestLabel?: string | undefined, paymentRequestMessage?: string | undefined, simulateChipRejection?: boolean, simulateOutOfOrderReversal?: boolean, asyncReversals?: boolean, passthroughSurcharge?: string | undefined, healthcare?: boolean, healthcareTotal?: string | undefined, ebtTotal?: string | undefined, cardMetadataLookup?: boolean);
|
|
1619
|
+
} | undefined, customer?: Customer | undefined, roundingMode?: RoundingMode | undefined, healthcareMetadata?: HealthcareMetadata | undefined, cryptocurrency?: string | undefined, cryptoNetwork?: string | undefined, cryptoReceiveAddress?: string | undefined, paymentRequestLabel?: string | undefined, paymentRequestMessage?: string | undefined, simulateChipRejection?: boolean, simulateOutOfOrderReversal?: boolean, asyncReversals?: boolean, passthroughSurcharge?: string | undefined, healthcare?: boolean, healthcareTotal?: string | undefined, ebtTotal?: string | undefined, cardMetadataLookup?: boolean, shippingAmount?: string | undefined, processorId?: string | undefined, externalCustomerId?: string | undefined);
|
|
1588
1620
|
}
|
|
1589
1621
|
/**
|
|
1590
1622
|
* Essential information about a payment card derived from its BIN/IIN.
|
|
@@ -1741,6 +1773,10 @@ export declare class CardMetadataRequest {
|
|
|
1741
1773
|
* The cardholder postal code for use with address verification.
|
|
1742
1774
|
*/
|
|
1743
1775
|
postalCode?: string;
|
|
1776
|
+
/**
|
|
1777
|
+
* The cardholder country.
|
|
1778
|
+
*/
|
|
1779
|
+
country?: string;
|
|
1744
1780
|
/**
|
|
1745
1781
|
* That the payment entry method is a manual keyed transaction. If this is true, no other
|
|
1746
1782
|
* payment method will be accepted.
|
|
@@ -1775,7 +1811,7 @@ export declare class CardMetadataRequest {
|
|
|
1775
1811
|
* Marks a transaction as HSA/FSA.
|
|
1776
1812
|
*/
|
|
1777
1813
|
healthcare?: boolean;
|
|
1778
|
-
constructor(timeout?: number | null, test?: boolean | null, transactionRef?: string | undefined, autogeneratedRef?: boolean | null, async?: boolean | null, queue?: boolean | null, waitForRemovedCard?: boolean, force?: boolean, orderRef?: string | undefined, destinationAccount?: string | undefined, testCase?: string | undefined, token?: string | undefined, track1?: string | undefined, track2?: string | undefined, pan?: string | undefined, routingNumber?: string | undefined, cardholderName?: string | undefined, expMonth?: string | undefined, expYear?: string | undefined, cvv?: string | undefined, address?: string | undefined, postalCode?: string | undefined, manualEntry?: boolean, ksn?: string | undefined, pinBlock?: string | undefined, cardType?: CardType | undefined, paymentType?: string | undefined, terminalName?: string | undefined, resetConnection?: boolean | null, healthcare?: boolean);
|
|
1814
|
+
constructor(timeout?: number | null, test?: boolean | null, transactionRef?: string | undefined, autogeneratedRef?: boolean | null, async?: boolean | null, queue?: boolean | null, waitForRemovedCard?: boolean, force?: boolean, orderRef?: string | undefined, destinationAccount?: string | undefined, testCase?: string | undefined, token?: string | undefined, track1?: string | undefined, track2?: string | undefined, pan?: string | undefined, routingNumber?: string | undefined, cardholderName?: string | undefined, expMonth?: string | undefined, expYear?: string | undefined, cvv?: string | undefined, address?: string | undefined, postalCode?: string | undefined, country?: string | undefined, manualEntry?: boolean, ksn?: string | undefined, pinBlock?: string | undefined, cardType?: CardType | undefined, paymentType?: string | undefined, terminalName?: string | undefined, resetConnection?: boolean | null, healthcare?: boolean);
|
|
1779
1815
|
}
|
|
1780
1816
|
/**
|
|
1781
1817
|
* The response to a card metadata request.
|
|
@@ -1840,6 +1876,18 @@ export declare class CardMetadataResponse {
|
|
|
1840
1876
|
* The card expiration year in YY format.
|
|
1841
1877
|
*/
|
|
1842
1878
|
expYear?: string;
|
|
1879
|
+
/**
|
|
1880
|
+
* The card postal code.
|
|
1881
|
+
*/
|
|
1882
|
+
postalCode?: string;
|
|
1883
|
+
/**
|
|
1884
|
+
* The card address.
|
|
1885
|
+
*/
|
|
1886
|
+
address?: string;
|
|
1887
|
+
/**
|
|
1888
|
+
* The card country.
|
|
1889
|
+
*/
|
|
1890
|
+
country?: string;
|
|
1843
1891
|
/**
|
|
1844
1892
|
* Address verification results if address information was submitted.
|
|
1845
1893
|
*/
|
|
@@ -1864,7 +1912,7 @@ export declare class CardMetadataResponse {
|
|
|
1864
1912
|
* Details about a payment card derived from its BIN/IIN.
|
|
1865
1913
|
*/
|
|
1866
1914
|
cardMetadata?: CardMetadata;
|
|
1867
|
-
constructor(success?: boolean | null, error?: string | null, responseDescription?: string | null, token?: string | undefined, entryMethod?: string | undefined, paymentType?: string | undefined, network?: string | undefined, logo?: string | undefined, maskedPan?: string | undefined, publicKey?: string | undefined, ScopeAlert?: boolean, cardHolder?: string | undefined, expMonth?: string | undefined, expYear?: string | undefined, avsResponse?: AVSResponse | null, cvvResponse?: string | undefined, receiptSuggestions?: ReceiptSuggestions | null, customer?: Customer | undefined, customers?: Customer[] | null, cardMetadata?: CardMetadata | undefined);
|
|
1915
|
+
constructor(success?: boolean | null, error?: string | null, responseDescription?: string | null, token?: string | undefined, entryMethod?: string | undefined, paymentType?: string | undefined, network?: string | undefined, logo?: string | undefined, maskedPan?: string | undefined, publicKey?: string | undefined, ScopeAlert?: boolean, cardHolder?: string | undefined, expMonth?: string | undefined, expYear?: string | undefined, postalCode?: string | undefined, address?: string | undefined, country?: string | undefined, avsResponse?: AVSResponse | null, cvvResponse?: string | undefined, receiptSuggestions?: ReceiptSuggestions | null, customer?: Customer | undefined, customers?: Customer[] | null, cardMetadata?: CardMetadata | undefined);
|
|
1868
1916
|
}
|
|
1869
1917
|
/**
|
|
1870
1918
|
* A request for the remaining balance on a payment type.
|
|
@@ -1967,6 +2015,10 @@ export declare class BalanceRequest {
|
|
|
1967
2015
|
* The cardholder postal code for use with address verification.
|
|
1968
2016
|
*/
|
|
1969
2017
|
postalCode?: string;
|
|
2018
|
+
/**
|
|
2019
|
+
* The cardholder country.
|
|
2020
|
+
*/
|
|
2021
|
+
country?: string;
|
|
1970
2022
|
/**
|
|
1971
2023
|
* That the payment entry method is a manual keyed transaction. If this is true, no other
|
|
1972
2024
|
* payment method will be accepted.
|
|
@@ -1997,7 +2049,7 @@ export declare class BalanceRequest {
|
|
|
1997
2049
|
* This is a diagnostic settings that can be used only for test transactions.
|
|
1998
2050
|
*/
|
|
1999
2051
|
resetConnection: boolean | null;
|
|
2000
|
-
constructor(timeout?: number | null, test?: boolean | null, transactionRef?: string | undefined, autogeneratedRef?: boolean | null, async?: boolean | null, queue?: boolean | null, waitForRemovedCard?: boolean, force?: boolean, orderRef?: string | undefined, destinationAccount?: string | undefined, testCase?: string | undefined, token?: string | undefined, track1?: string | undefined, track2?: string | undefined, pan?: string | undefined, routingNumber?: string | undefined, cardholderName?: string | undefined, expMonth?: string | undefined, expYear?: string | undefined, cvv?: string | undefined, address?: string | undefined, postalCode?: string | undefined, manualEntry?: boolean, ksn?: string | undefined, pinBlock?: string | undefined, cardType?: CardType | undefined, paymentType?: string | undefined, terminalName?: string | undefined, resetConnection?: boolean | null);
|
|
2052
|
+
constructor(timeout?: number | null, test?: boolean | null, transactionRef?: string | undefined, autogeneratedRef?: boolean | null, async?: boolean | null, queue?: boolean | null, waitForRemovedCard?: boolean, force?: boolean, orderRef?: string | undefined, destinationAccount?: string | undefined, testCase?: string | undefined, token?: string | undefined, track1?: string | undefined, track2?: string | undefined, pan?: string | undefined, routingNumber?: string | undefined, cardholderName?: string | undefined, expMonth?: string | undefined, expYear?: string | undefined, cvv?: string | undefined, address?: string | undefined, postalCode?: string | undefined, country?: string | undefined, manualEntry?: boolean, ksn?: string | undefined, pinBlock?: string | undefined, cardType?: CardType | undefined, paymentType?: string | undefined, terminalName?: string | undefined, resetConnection?: boolean | null);
|
|
2001
2053
|
}
|
|
2002
2054
|
/**
|
|
2003
2055
|
* The response to a balance request.
|
|
@@ -2101,6 +2153,18 @@ export declare class BalanceResponse {
|
|
|
2101
2153
|
* The card expiration year in YY format.
|
|
2102
2154
|
*/
|
|
2103
2155
|
expYear?: string;
|
|
2156
|
+
/**
|
|
2157
|
+
* The card postal code.
|
|
2158
|
+
*/
|
|
2159
|
+
postalCode?: string;
|
|
2160
|
+
/**
|
|
2161
|
+
* The card address.
|
|
2162
|
+
*/
|
|
2163
|
+
address?: string;
|
|
2164
|
+
/**
|
|
2165
|
+
* The card country.
|
|
2166
|
+
*/
|
|
2167
|
+
country?: string;
|
|
2104
2168
|
/**
|
|
2105
2169
|
* Address verification results if address information was submitted.
|
|
2106
2170
|
*/
|
|
@@ -2125,7 +2189,7 @@ export declare class BalanceResponse {
|
|
|
2125
2189
|
* Remaining balance on the payment method.
|
|
2126
2190
|
*/
|
|
2127
2191
|
remainingBalance?: string;
|
|
2128
|
-
constructor(success?: boolean | null, error?: string | null, responseDescription?: string | null, transactionId?: string | null, batchId?: string | undefined, transactionRef?: string | undefined, transactionType?: string | null, timestamp?: string | null, tickBlock?: string | null, test?: boolean | null, destinationAccount?: string | undefined, sig?: string | undefined, token?: string | undefined, entryMethod?: string | undefined, paymentType?: string | undefined, network?: string | undefined, logo?: string | undefined, maskedPan?: string | undefined, publicKey?: string | undefined, ScopeAlert?: boolean, cardHolder?: string | undefined, expMonth?: string | undefined, expYear?: string | undefined, avsResponse?: AVSResponse | null, cvvResponse?: string | undefined, receiptSuggestions?: ReceiptSuggestions | null, customer?: Customer | undefined, customers?: Customer[] | null, remainingBalance?: string | undefined);
|
|
2192
|
+
constructor(success?: boolean | null, error?: string | null, responseDescription?: string | null, transactionId?: string | null, batchId?: string | undefined, transactionRef?: string | undefined, transactionType?: string | null, timestamp?: string | null, tickBlock?: string | null, test?: boolean | null, destinationAccount?: string | undefined, sig?: string | undefined, token?: string | undefined, entryMethod?: string | undefined, paymentType?: string | undefined, network?: string | undefined, logo?: string | undefined, maskedPan?: string | undefined, publicKey?: string | undefined, ScopeAlert?: boolean, cardHolder?: string | undefined, expMonth?: string | undefined, expYear?: string | undefined, postalCode?: string | undefined, address?: string | undefined, country?: string | undefined, avsResponse?: AVSResponse | null, cvvResponse?: string | undefined, receiptSuggestions?: ReceiptSuggestions | null, customer?: Customer | undefined, customers?: Customer[] | null, remainingBalance?: string | undefined);
|
|
2129
2193
|
}
|
|
2130
2194
|
/**
|
|
2131
2195
|
* A refund request.
|
|
@@ -2228,6 +2292,10 @@ export declare class RefundRequest {
|
|
|
2228
2292
|
* The cardholder postal code for use with address verification.
|
|
2229
2293
|
*/
|
|
2230
2294
|
postalCode?: string;
|
|
2295
|
+
/**
|
|
2296
|
+
* The cardholder country.
|
|
2297
|
+
*/
|
|
2298
|
+
country?: string;
|
|
2231
2299
|
/**
|
|
2232
2300
|
* That the payment entry method is a manual keyed transaction. If this is true, no other
|
|
2233
2301
|
* payment method will be accepted.
|
|
@@ -2340,7 +2408,7 @@ export declare class RefundRequest {
|
|
|
2340
2408
|
* That this transaction will include a card metadata lookup.
|
|
2341
2409
|
*/
|
|
2342
2410
|
cardMetadataLookup?: boolean;
|
|
2343
|
-
constructor(timeout?: number | null, test?: boolean | null, transactionRef?: string | undefined, autogeneratedRef?: boolean | null, async?: boolean | null, queue?: boolean | null, waitForRemovedCard?: boolean, force?: boolean, orderRef?: string | undefined, destinationAccount?: string | undefined, testCase?: string | undefined, token?: string | undefined, track1?: string | undefined, track2?: string | undefined, pan?: string | undefined, routingNumber?: string | undefined, cardholderName?: string | undefined, expMonth?: string | undefined, expYear?: string | undefined, cvv?: string | undefined, address?: string | undefined, postalCode?: string | undefined, manualEntry?: boolean, ksn?: string | undefined, pinBlock?: string | undefined, cardType?: CardType | undefined, paymentType?: string | undefined, transactionId?: string | null, currencyCode?: string | null, amount?: string | null, taxExempt?: boolean | null, surcharge?: boolean | null, cashDiscount?: boolean | null, sigFile?: string | undefined, sigFormat?: SignatureFormat | undefined, sigWidth?: number, disableSignature?: boolean, tipAmount?: string | undefined, taxAmount?: string | undefined, terminalName?: string | undefined, resetConnection?: boolean | null, healthcareMetadata?: HealthcareMetadata | undefined, simulateChipRejection?: boolean, simulateOutOfOrderReversal?: boolean, asyncReversals?: boolean, cit?: boolean, mit?: boolean, cardMetadataLookup?: boolean);
|
|
2411
|
+
constructor(timeout?: number | null, test?: boolean | null, transactionRef?: string | undefined, autogeneratedRef?: boolean | null, async?: boolean | null, queue?: boolean | null, waitForRemovedCard?: boolean, force?: boolean, orderRef?: string | undefined, destinationAccount?: string | undefined, testCase?: string | undefined, token?: string | undefined, track1?: string | undefined, track2?: string | undefined, pan?: string | undefined, routingNumber?: string | undefined, cardholderName?: string | undefined, expMonth?: string | undefined, expYear?: string | undefined, cvv?: string | undefined, address?: string | undefined, postalCode?: string | undefined, country?: string | undefined, manualEntry?: boolean, ksn?: string | undefined, pinBlock?: string | undefined, cardType?: CardType | undefined, paymentType?: string | undefined, transactionId?: string | null, currencyCode?: string | null, amount?: string | null, taxExempt?: boolean | null, surcharge?: boolean | null, cashDiscount?: boolean | null, sigFile?: string | undefined, sigFormat?: SignatureFormat | undefined, sigWidth?: number, disableSignature?: boolean, tipAmount?: string | undefined, taxAmount?: string | undefined, terminalName?: string | undefined, resetConnection?: boolean | null, healthcareMetadata?: HealthcareMetadata | undefined, simulateChipRejection?: boolean, simulateOutOfOrderReversal?: boolean, asyncReversals?: boolean, cit?: boolean, mit?: boolean, cardMetadataLookup?: boolean);
|
|
2344
2412
|
}
|
|
2345
2413
|
/**
|
|
2346
2414
|
* The information needed to capture a preauth.
|
|
@@ -2599,6 +2667,18 @@ export declare class CaptureResponse {
|
|
|
2599
2667
|
* The card expiration year in YY format.
|
|
2600
2668
|
*/
|
|
2601
2669
|
expYear?: string;
|
|
2670
|
+
/**
|
|
2671
|
+
* The card postal code.
|
|
2672
|
+
*/
|
|
2673
|
+
postalCode?: string;
|
|
2674
|
+
/**
|
|
2675
|
+
* The card address.
|
|
2676
|
+
*/
|
|
2677
|
+
address?: string;
|
|
2678
|
+
/**
|
|
2679
|
+
* The card country.
|
|
2680
|
+
*/
|
|
2681
|
+
country?: string;
|
|
2602
2682
|
/**
|
|
2603
2683
|
* Address verification results if address information was submitted.
|
|
2604
2684
|
*/
|
|
@@ -2619,7 +2699,7 @@ export declare class CaptureResponse {
|
|
|
2619
2699
|
* Customer data, if any.
|
|
2620
2700
|
*/
|
|
2621
2701
|
customers: Customer[] | null;
|
|
2622
|
-
constructor(success?: boolean | null, error?: string | null, responseDescription?: string | null, approved?: boolean | null, authCode?: string | undefined, authResponseCode?: string | undefined, transactionId?: string | null, batchId?: string | undefined, transactionRef?: string | undefined, transactionType?: string | null, timestamp?: string | null, tickBlock?: string | null, test?: boolean | null, destinationAccount?: string | undefined, sig?: string | undefined, partialAuth?: boolean | null, altCurrency?: boolean | null, fsaAuth?: boolean | null, currencyCode?: string | null, requestedAmount?: string | null, authorizedAmount?: string | null, remainingBalance?: string | null, tipAmount?: string | null, taxAmount?: string | null, requestedCashBackAmount?: string | null, authorizedCashBackAmount?: string | null, token?: string | undefined, entryMethod?: string | undefined, paymentType?: string | undefined, network?: string | undefined, logo?: string | undefined, maskedPan?: string | undefined, publicKey?: string | undefined, ScopeAlert?: boolean, cardHolder?: string | undefined, expMonth?: string | undefined, expYear?: string | undefined, avsResponse?: AVSResponse | null, cvvResponse?: string | undefined, receiptSuggestions?: ReceiptSuggestions | null, customer?: Customer | undefined, customers?: Customer[] | null);
|
|
2702
|
+
constructor(success?: boolean | null, error?: string | null, responseDescription?: string | null, approved?: boolean | null, authCode?: string | undefined, authResponseCode?: string | undefined, transactionId?: string | null, batchId?: string | undefined, transactionRef?: string | undefined, transactionType?: string | null, timestamp?: string | null, tickBlock?: string | null, test?: boolean | null, destinationAccount?: string | undefined, sig?: string | undefined, partialAuth?: boolean | null, altCurrency?: boolean | null, fsaAuth?: boolean | null, currencyCode?: string | null, requestedAmount?: string | null, authorizedAmount?: string | null, remainingBalance?: string | null, tipAmount?: string | null, taxAmount?: string | null, requestedCashBackAmount?: string | null, authorizedCashBackAmount?: string | null, token?: string | undefined, entryMethod?: string | undefined, paymentType?: string | undefined, network?: string | undefined, logo?: string | undefined, maskedPan?: string | undefined, publicKey?: string | undefined, ScopeAlert?: boolean, cardHolder?: string | undefined, expMonth?: string | undefined, expYear?: string | undefined, postalCode?: string | undefined, address?: string | undefined, country?: string | undefined, avsResponse?: AVSResponse | null, cvvResponse?: string | undefined, receiptSuggestions?: ReceiptSuggestions | null, customer?: Customer | undefined, customers?: Customer[] | null);
|
|
2623
2703
|
}
|
|
2624
2704
|
/**
|
|
2625
2705
|
* A void request.
|
|
@@ -2795,6 +2875,18 @@ export declare class VoidResponse {
|
|
|
2795
2875
|
* The card expiration year in YY format.
|
|
2796
2876
|
*/
|
|
2797
2877
|
expYear?: string;
|
|
2878
|
+
/**
|
|
2879
|
+
* The card postal code.
|
|
2880
|
+
*/
|
|
2881
|
+
postalCode?: string;
|
|
2882
|
+
/**
|
|
2883
|
+
* The card address.
|
|
2884
|
+
*/
|
|
2885
|
+
address?: string;
|
|
2886
|
+
/**
|
|
2887
|
+
* The card country.
|
|
2888
|
+
*/
|
|
2889
|
+
country?: string;
|
|
2798
2890
|
/**
|
|
2799
2891
|
* Address verification results if address information was submitted.
|
|
2800
2892
|
*/
|
|
@@ -2819,7 +2911,7 @@ export declare class VoidResponse {
|
|
|
2819
2911
|
* The hex encoded signature data.
|
|
2820
2912
|
*/
|
|
2821
2913
|
sigFile?: string;
|
|
2822
|
-
constructor(success?: boolean | null, error?: string | null, responseDescription?: string | null, approved?: boolean | null, authCode?: string | undefined, authResponseCode?: string | undefined, transactionId?: string | null, batchId?: string | undefined, transactionRef?: string | undefined, transactionType?: string | null, timestamp?: string | null, tickBlock?: string | null, test?: boolean | null, destinationAccount?: string | undefined, sig?: string | undefined, token?: string | undefined, entryMethod?: string | undefined, paymentType?: string | undefined, network?: string | undefined, logo?: string | undefined, maskedPan?: string | undefined, publicKey?: string | undefined, ScopeAlert?: boolean, cardHolder?: string | undefined, expMonth?: string | undefined, expYear?: string | undefined, avsResponse?: AVSResponse | null, cvvResponse?: string | undefined, receiptSuggestions?: ReceiptSuggestions | null, customer?: Customer | undefined, customers?: Customer[] | null, sigFile?: string | undefined);
|
|
2914
|
+
constructor(success?: boolean | null, error?: string | null, responseDescription?: string | null, approved?: boolean | null, authCode?: string | undefined, authResponseCode?: string | undefined, transactionId?: string | null, batchId?: string | undefined, transactionRef?: string | undefined, transactionType?: string | null, timestamp?: string | null, tickBlock?: string | null, test?: boolean | null, destinationAccount?: string | undefined, sig?: string | undefined, token?: string | undefined, entryMethod?: string | undefined, paymentType?: string | undefined, network?: string | undefined, logo?: string | undefined, maskedPan?: string | undefined, publicKey?: string | undefined, ScopeAlert?: boolean, cardHolder?: string | undefined, expMonth?: string | undefined, expYear?: string | undefined, postalCode?: string | undefined, address?: string | undefined, country?: string | undefined, avsResponse?: AVSResponse | null, cvvResponse?: string | undefined, receiptSuggestions?: ReceiptSuggestions | null, customer?: Customer | undefined, customers?: Customer[] | null, sigFile?: string | undefined);
|
|
2823
2915
|
}
|
|
2824
2916
|
/**
|
|
2825
2917
|
* The information needed to enroll a new payment method in the token vault.
|
|
@@ -2922,6 +3014,10 @@ export declare class EnrollRequest {
|
|
|
2922
3014
|
* The cardholder postal code for use with address verification.
|
|
2923
3015
|
*/
|
|
2924
3016
|
postalCode?: string;
|
|
3017
|
+
/**
|
|
3018
|
+
* The cardholder country.
|
|
3019
|
+
*/
|
|
3020
|
+
country?: string;
|
|
2925
3021
|
/**
|
|
2926
3022
|
* That the payment entry method is a manual keyed transaction. If this is true, no other
|
|
2927
3023
|
* payment method will be accepted.
|
|
@@ -2985,7 +3081,7 @@ export declare class EnrollRequest {
|
|
|
2985
3081
|
* The bank name for an ACH payment method.
|
|
2986
3082
|
*/
|
|
2987
3083
|
bankName?: string;
|
|
2988
|
-
constructor(timeout?: number | null, test?: boolean | null, transactionRef?: string | undefined, autogeneratedRef?: boolean | null, async?: boolean | null, queue?: boolean | null, waitForRemovedCard?: boolean, force?: boolean, orderRef?: string | undefined, destinationAccount?: string | undefined, testCase?: string | undefined, token?: string | undefined, track1?: string | undefined, track2?: string | undefined, pan?: string | undefined, routingNumber?: string | undefined, cardholderName?: string | undefined, expMonth?: string | undefined, expYear?: string | undefined, cvv?: string | undefined, address?: string | undefined, postalCode?: string | undefined, manualEntry?: boolean, ksn?: string | undefined, pinBlock?: string | undefined, cardType?: CardType | undefined, paymentType?: string | undefined, terminalName?: string | undefined, resetConnection?: boolean | null, entryMethod?: string | undefined, customer?: Customer | undefined, recurring?: boolean, subscription?: boolean, cardMetadataLookup?: boolean, accountType?: string | undefined, accountHolderType?: string | undefined, bankName?: string | undefined);
|
|
3084
|
+
constructor(timeout?: number | null, test?: boolean | null, transactionRef?: string | undefined, autogeneratedRef?: boolean | null, async?: boolean | null, queue?: boolean | null, waitForRemovedCard?: boolean, force?: boolean, orderRef?: string | undefined, destinationAccount?: string | undefined, testCase?: string | undefined, token?: string | undefined, track1?: string | undefined, track2?: string | undefined, pan?: string | undefined, routingNumber?: string | undefined, cardholderName?: string | undefined, expMonth?: string | undefined, expYear?: string | undefined, cvv?: string | undefined, address?: string | undefined, postalCode?: string | undefined, country?: string | undefined, manualEntry?: boolean, ksn?: string | undefined, pinBlock?: string | undefined, cardType?: CardType | undefined, paymentType?: string | undefined, terminalName?: string | undefined, resetConnection?: boolean | null, entryMethod?: string | undefined, customer?: Customer | undefined, recurring?: boolean, subscription?: boolean, cardMetadataLookup?: boolean, accountType?: string | undefined, accountHolderType?: string | undefined, bankName?: string | undefined);
|
|
2989
3085
|
}
|
|
2990
3086
|
/**
|
|
2991
3087
|
* The response to an enroll request.
|
|
@@ -3102,6 +3198,18 @@ export declare class EnrollResponse {
|
|
|
3102
3198
|
* The card expiration year in YY format.
|
|
3103
3199
|
*/
|
|
3104
3200
|
expYear?: string;
|
|
3201
|
+
/**
|
|
3202
|
+
* The card postal code.
|
|
3203
|
+
*/
|
|
3204
|
+
postalCode?: string;
|
|
3205
|
+
/**
|
|
3206
|
+
* The card address.
|
|
3207
|
+
*/
|
|
3208
|
+
address?: string;
|
|
3209
|
+
/**
|
|
3210
|
+
* The card country.
|
|
3211
|
+
*/
|
|
3212
|
+
country?: string;
|
|
3105
3213
|
/**
|
|
3106
3214
|
* Address verification results if address information was submitted.
|
|
3107
3215
|
*/
|
|
@@ -3151,7 +3259,7 @@ export declare class EnrollResponse {
|
|
|
3151
3259
|
* The first 8 digits of the card aka the BIN.
|
|
3152
3260
|
*/
|
|
3153
3261
|
bin?: string;
|
|
3154
|
-
constructor(success?: boolean | null, error?: string | null, responseDescription?: string | null, approved?: boolean | null, authCode?: string | undefined, authResponseCode?: string | undefined, transactionId?: string | null, batchId?: string | undefined, transactionRef?: string | undefined, transactionType?: string | null, timestamp?: string | null, tickBlock?: string | null, test?: boolean | null, destinationAccount?: string | undefined, sig?: string | undefined, token?: string | undefined, entryMethod?: string | undefined, paymentType?: string | undefined, network?: string | undefined, logo?: string | undefined, maskedPan?: string | undefined, publicKey?: string | undefined, ScopeAlert?: boolean, cardHolder?: string | undefined, expMonth?: string | undefined, expYear?: string | undefined, avsResponse?: AVSResponse | null, cvvResponse?: string | undefined, receiptSuggestions?: ReceiptSuggestions | null, customer?: Customer | undefined, customers?: Customer[] | null, sigFile?: string | undefined, cardMetadata?: CardMetadata | undefined, accountType?: string | undefined, accountHolderType?: string | undefined, bankName?: string | undefined, tokenHash?: string | undefined, bin?: string | undefined);
|
|
3262
|
+
constructor(success?: boolean | null, error?: string | null, responseDescription?: string | null, approved?: boolean | null, authCode?: string | undefined, authResponseCode?: string | undefined, transactionId?: string | null, batchId?: string | undefined, transactionRef?: string | undefined, transactionType?: string | null, timestamp?: string | null, tickBlock?: string | null, test?: boolean | null, destinationAccount?: string | undefined, sig?: string | undefined, token?: string | undefined, entryMethod?: string | undefined, paymentType?: string | undefined, network?: string | undefined, logo?: string | undefined, maskedPan?: string | undefined, publicKey?: string | undefined, ScopeAlert?: boolean, cardHolder?: string | undefined, expMonth?: string | undefined, expYear?: string | undefined, postalCode?: string | undefined, address?: string | undefined, country?: string | undefined, avsResponse?: AVSResponse | null, cvvResponse?: string | undefined, receiptSuggestions?: ReceiptSuggestions | null, customer?: Customer | undefined, customers?: Customer[] | null, sigFile?: string | undefined, cardMetadata?: CardMetadata | undefined, accountType?: string | undefined, accountHolderType?: string | undefined, bankName?: string | undefined, tokenHash?: string | undefined, bin?: string | undefined);
|
|
3155
3263
|
}
|
|
3156
3264
|
/**
|
|
3157
3265
|
* The information needed to enroll a new payment method in the token vault.
|
|
@@ -3876,6 +3984,18 @@ export declare class AuthorizationResponse {
|
|
|
3876
3984
|
* The card expiration year in YY format.
|
|
3877
3985
|
*/
|
|
3878
3986
|
expYear?: string;
|
|
3987
|
+
/**
|
|
3988
|
+
* The card postal code.
|
|
3989
|
+
*/
|
|
3990
|
+
postalCode?: string;
|
|
3991
|
+
/**
|
|
3992
|
+
* The card address.
|
|
3993
|
+
*/
|
|
3994
|
+
address?: string;
|
|
3995
|
+
/**
|
|
3996
|
+
* The card country.
|
|
3997
|
+
*/
|
|
3998
|
+
country?: string;
|
|
3879
3999
|
/**
|
|
3880
4000
|
* Address verification results if address information was submitted.
|
|
3881
4001
|
*/
|
|
@@ -3917,7 +4037,7 @@ export declare class AuthorizationResponse {
|
|
|
3917
4037
|
* Details about a payment card derived from its BIN/IIN.
|
|
3918
4038
|
*/
|
|
3919
4039
|
cardMetadata?: CardMetadata;
|
|
3920
|
-
constructor(success?: boolean | null, error?: string | null, responseDescription?: string | null, approved?: boolean | null, authCode?: string | undefined, authResponseCode?: string | undefined, transactionId?: string | null, batchId?: string | undefined, transactionRef?: string | undefined, transactionType?: string | null, timestamp?: string | null, tickBlock?: string | null, test?: boolean | null, destinationAccount?: string | undefined, sig?: string | undefined, partialAuth?: boolean | null, altCurrency?: boolean | null, fsaAuth?: boolean | null, currencyCode?: string | null, requestedAmount?: string | null, authorizedAmount?: string | null, remainingBalance?: string | null, tipAmount?: string | null, taxAmount?: string | null, requestedCashBackAmount?: string | null, authorizedCashBackAmount?: string | null, confirmed?: boolean | null, cryptoAuthorizedAmount?: string | null, cryptoNetworkFee?: string | null, cryptocurrency?: string | null, cryptoNetwork?: string | null, cryptoReceiveAddress?: string | null, cryptoBlock?: string | null, cryptoTransactionId?: string | null, cryptoPaymentRequest?: string | null, cryptoStatus?: string | null, token?: string | undefined, entryMethod?: string | undefined, paymentType?: string | undefined, network?: string | undefined, logo?: string | undefined, maskedPan?: string | undefined, publicKey?: string | undefined, ScopeAlert?: boolean, cardHolder?: string | undefined, expMonth?: string | undefined, expYear?: string | undefined, avsResponse?: AVSResponse | null, cvvResponse?: string | undefined, receiptSuggestions?: ReceiptSuggestions | null, customer?: Customer | undefined, customers?: Customer[] | null, sigFile?: string | undefined, whiteListedCard?: WhiteListedCard | undefined, storeAndForward?: boolean | null, status?: string | null, cardMetadata?: CardMetadata | undefined);
|
|
4040
|
+
constructor(success?: boolean | null, error?: string | null, responseDescription?: string | null, approved?: boolean | null, authCode?: string | undefined, authResponseCode?: string | undefined, transactionId?: string | null, batchId?: string | undefined, transactionRef?: string | undefined, transactionType?: string | null, timestamp?: string | null, tickBlock?: string | null, test?: boolean | null, destinationAccount?: string | undefined, sig?: string | undefined, partialAuth?: boolean | null, altCurrency?: boolean | null, fsaAuth?: boolean | null, currencyCode?: string | null, requestedAmount?: string | null, authorizedAmount?: string | null, remainingBalance?: string | null, tipAmount?: string | null, taxAmount?: string | null, requestedCashBackAmount?: string | null, authorizedCashBackAmount?: string | null, confirmed?: boolean | null, cryptoAuthorizedAmount?: string | null, cryptoNetworkFee?: string | null, cryptocurrency?: string | null, cryptoNetwork?: string | null, cryptoReceiveAddress?: string | null, cryptoBlock?: string | null, cryptoTransactionId?: string | null, cryptoPaymentRequest?: string | null, cryptoStatus?: string | null, token?: string | undefined, entryMethod?: string | undefined, paymentType?: string | undefined, network?: string | undefined, logo?: string | undefined, maskedPan?: string | undefined, publicKey?: string | undefined, ScopeAlert?: boolean, cardHolder?: string | undefined, expMonth?: string | undefined, expYear?: string | undefined, postalCode?: string | undefined, address?: string | undefined, country?: string | undefined, avsResponse?: AVSResponse | null, cvvResponse?: string | undefined, receiptSuggestions?: ReceiptSuggestions | null, customer?: Customer | undefined, customers?: Customer[] | null, sigFile?: string | undefined, whiteListedCard?: WhiteListedCard | undefined, storeAndForward?: boolean | null, status?: string | null, cardMetadata?: CardMetadata | undefined);
|
|
3921
4041
|
}
|
|
3922
4042
|
/**
|
|
3923
4043
|
* Models the request for updated information about a transaction.
|
|
@@ -4268,6 +4388,18 @@ export declare class TransactionStatus {
|
|
|
4268
4388
|
* The card expiration year in YY format.
|
|
4269
4389
|
*/
|
|
4270
4390
|
expYear?: string;
|
|
4391
|
+
/**
|
|
4392
|
+
* The card postal code.
|
|
4393
|
+
*/
|
|
4394
|
+
postalCode?: string;
|
|
4395
|
+
/**
|
|
4396
|
+
* The card address.
|
|
4397
|
+
*/
|
|
4398
|
+
address?: string;
|
|
4399
|
+
/**
|
|
4400
|
+
* The card country.
|
|
4401
|
+
*/
|
|
4402
|
+
country?: string;
|
|
4271
4403
|
/**
|
|
4272
4404
|
* Address verification results if address information was submitted.
|
|
4273
4405
|
*/
|
|
@@ -4296,7 +4428,7 @@ export declare class TransactionStatus {
|
|
|
4296
4428
|
* That the transaction was flagged for store and forward due to network problems.
|
|
4297
4429
|
*/
|
|
4298
4430
|
storeAndForward: boolean | null;
|
|
4299
|
-
constructor(success?: boolean | null, error?: string | null, responseDescription?: string | null, approved?: boolean | null, authCode?: string | undefined, authResponseCode?: string | undefined, transactionId?: string | null, batchId?: string | undefined, transactionRef?: string | undefined, transactionType?: string | null, timestamp?: string | null, tickBlock?: string | null, test?: boolean | null, destinationAccount?: string | undefined, sig?: string | undefined, partialAuth?: boolean | null, altCurrency?: boolean | null, fsaAuth?: boolean | null, currencyCode?: string | null, requestedAmount?: string | null, authorizedAmount?: string | null, remainingBalance?: string | null, tipAmount?: string | null, taxAmount?: string | null, requestedCashBackAmount?: string | null, authorizedCashBackAmount?: string | null, token?: string | undefined, entryMethod?: string | undefined, paymentType?: string | undefined, network?: string | undefined, logo?: string | undefined, maskedPan?: string | undefined, publicKey?: string | undefined, ScopeAlert?: boolean, cardHolder?: string | undefined, expMonth?: string | undefined, expYear?: string | undefined, avsResponse?: AVSResponse | null, cvvResponse?: string | undefined, receiptSuggestions?: ReceiptSuggestions | null, customer?: Customer | undefined, customers?: Customer[] | null, sigFile?: string | undefined, storeAndForward?: boolean | null);
|
|
4431
|
+
constructor(success?: boolean | null, error?: string | null, responseDescription?: string | null, approved?: boolean | null, authCode?: string | undefined, authResponseCode?: string | undefined, transactionId?: string | null, batchId?: string | undefined, transactionRef?: string | undefined, transactionType?: string | null, timestamp?: string | null, tickBlock?: string | null, test?: boolean | null, destinationAccount?: string | undefined, sig?: string | undefined, partialAuth?: boolean | null, altCurrency?: boolean | null, fsaAuth?: boolean | null, currencyCode?: string | null, requestedAmount?: string | null, authorizedAmount?: string | null, remainingBalance?: string | null, tipAmount?: string | null, taxAmount?: string | null, requestedCashBackAmount?: string | null, authorizedCashBackAmount?: string | null, token?: string | undefined, entryMethod?: string | undefined, paymentType?: string | undefined, network?: string | undefined, logo?: string | undefined, maskedPan?: string | undefined, publicKey?: string | undefined, ScopeAlert?: boolean, cardHolder?: string | undefined, expMonth?: string | undefined, expYear?: string | undefined, postalCode?: string | undefined, address?: string | undefined, country?: string | undefined, avsResponse?: AVSResponse | null, cvvResponse?: string | undefined, receiptSuggestions?: ReceiptSuggestions | null, customer?: Customer | undefined, customers?: Customer[] | null, sigFile?: string | undefined, storeAndForward?: boolean | null);
|
|
4300
4432
|
}
|
|
4301
4433
|
/**
|
|
4302
4434
|
* An item level discount for transaction display. Discounts never combine.
|
|
@@ -5509,7 +5641,15 @@ export declare class BatchDetailsResponse {
|
|
|
5509
5641
|
* Merchant's batch history in descending order.
|
|
5510
5642
|
*/
|
|
5511
5643
|
volumeByTerminal: TerminalVolume[] | null;
|
|
5512
|
-
|
|
5644
|
+
/**
|
|
5645
|
+
* The net volume for this batch, usually expected volume less daily fees volume.
|
|
5646
|
+
*/
|
|
5647
|
+
netDeposit: string | null;
|
|
5648
|
+
/**
|
|
5649
|
+
* The daily fees for this batch
|
|
5650
|
+
*/
|
|
5651
|
+
dailyFees: string | null;
|
|
5652
|
+
constructor(success?: boolean | null, error?: string | null, responseDescription?: string | null, test?: boolean | null, batchId?: string | null, entryMethod?: string | null, destinationAccountId?: string | null, capturedAmount?: string | null, openPreauths?: string | null, totalVolume?: string | null, transactionCount?: number | null, giftCardsSold?: string | null, giftCardVolume?: string | null, expectedDeposit?: string | null, open?: boolean | null, openDate?: Date | null, closeDate?: Date | null, volumeByTerminal?: TerminalVolume[] | null, netDeposit?: string | null, dailyFees?: string | null);
|
|
5513
5653
|
}
|
|
5514
5654
|
/**
|
|
5515
5655
|
* Models transaction volume for a single terminal.
|
|
@@ -10451,6 +10591,18 @@ export declare class PaymentMethodResponse {
|
|
|
10451
10591
|
* The card expiration year in YY format.
|
|
10452
10592
|
*/
|
|
10453
10593
|
expYear?: string;
|
|
10594
|
+
/**
|
|
10595
|
+
* The card postal code.
|
|
10596
|
+
*/
|
|
10597
|
+
postalCode?: string;
|
|
10598
|
+
/**
|
|
10599
|
+
* The card address.
|
|
10600
|
+
*/
|
|
10601
|
+
address?: string;
|
|
10602
|
+
/**
|
|
10603
|
+
* The card country.
|
|
10604
|
+
*/
|
|
10605
|
+
country?: string;
|
|
10454
10606
|
/**
|
|
10455
10607
|
* Address verification results if address information was submitted.
|
|
10456
10608
|
*/
|
|
@@ -10471,7 +10623,7 @@ export declare class PaymentMethodResponse {
|
|
|
10471
10623
|
* Customer data, if any.
|
|
10472
10624
|
*/
|
|
10473
10625
|
customers: Customer[] | null;
|
|
10474
|
-
constructor(token?: string | undefined, entryMethod?: string | undefined, paymentType?: string | undefined, network?: string | undefined, logo?: string | undefined, maskedPan?: string | undefined, publicKey?: string | undefined, ScopeAlert?: boolean, cardHolder?: string | undefined, expMonth?: string | undefined, expYear?: string | undefined, avsResponse?: AVSResponse | null, cvvResponse?: string | undefined, receiptSuggestions?: ReceiptSuggestions | null, customer?: Customer | undefined, customers?: Customer[] | null);
|
|
10626
|
+
constructor(token?: string | undefined, entryMethod?: string | undefined, paymentType?: string | undefined, network?: string | undefined, logo?: string | undefined, maskedPan?: string | undefined, publicKey?: string | undefined, ScopeAlert?: boolean, cardHolder?: string | undefined, expMonth?: string | undefined, expYear?: string | undefined, postalCode?: string | undefined, address?: string | undefined, country?: string | undefined, avsResponse?: AVSResponse | null, cvvResponse?: string | undefined, receiptSuggestions?: ReceiptSuggestions | null, customer?: Customer | undefined, customers?: Customer[] | null);
|
|
10475
10627
|
}
|
|
10476
10628
|
/**
|
|
10477
10629
|
* Response details for a cryptocurrency transaction.
|
|
@@ -10627,6 +10779,10 @@ export declare class PaymentMethod {
|
|
|
10627
10779
|
* The cardholder postal code for use with address verification.
|
|
10628
10780
|
*/
|
|
10629
10781
|
postalCode?: string;
|
|
10782
|
+
/**
|
|
10783
|
+
* The cardholder country.
|
|
10784
|
+
*/
|
|
10785
|
+
country?: string;
|
|
10630
10786
|
/**
|
|
10631
10787
|
* That the payment entry method is a manual keyed transaction. If this is true, no other
|
|
10632
10788
|
* payment method will be accepted.
|
|
@@ -10648,7 +10804,7 @@ export declare class PaymentMethod {
|
|
|
10648
10804
|
* Designates brands of payment methods: Visa, Discover, etc.
|
|
10649
10805
|
*/
|
|
10650
10806
|
paymentType?: string;
|
|
10651
|
-
constructor(token?: string | undefined, track1?: string | undefined, track2?: string | undefined, pan?: string | undefined, routingNumber?: string | undefined, cardholderName?: string | undefined, expMonth?: string | undefined, expYear?: string | undefined, cvv?: string | undefined, address?: string | undefined, postalCode?: string | undefined, manualEntry?: boolean, ksn?: string | undefined, pinBlock?: string | undefined, cardType?: CardType | undefined, paymentType?: string | undefined);
|
|
10807
|
+
constructor(token?: string | undefined, track1?: string | undefined, track2?: string | undefined, pan?: string | undefined, routingNumber?: string | undefined, cardholderName?: string | undefined, expMonth?: string | undefined, expYear?: string | undefined, cvv?: string | undefined, address?: string | undefined, postalCode?: string | undefined, country?: string | undefined, manualEntry?: boolean, ksn?: string | undefined, pinBlock?: string | undefined, cardType?: CardType | undefined, paymentType?: string | undefined);
|
|
10652
10808
|
}
|
|
10653
10809
|
/**
|
|
10654
10810
|
* Request details about tender amounts.
|