@finverse/sdk-typescript 0.0.398 → 0.0.399
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/dist/api.d.ts +12 -0
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -7453,6 +7453,12 @@ export interface PaymentMethodResponse {
|
|
|
7453
7453
|
* @memberof PaymentMethodResponse
|
|
7454
7454
|
*/
|
|
7455
7455
|
payment_method_type?: string;
|
|
7456
|
+
/**
|
|
7457
|
+
* Whether the payment method is live (true) or a test payment method (false), based on its payment rail. Absent if the payment rail is unknown.
|
|
7458
|
+
* @type {boolean}
|
|
7459
|
+
* @memberof PaymentMethodResponse
|
|
7460
|
+
*/
|
|
7461
|
+
live?: boolean | null;
|
|
7456
7462
|
/**
|
|
7457
7463
|
*
|
|
7458
7464
|
* @type {GetMandateResponse}
|
|
@@ -7570,6 +7576,12 @@ export interface PaymentResponse {
|
|
|
7570
7576
|
* @memberof PaymentResponse
|
|
7571
7577
|
*/
|
|
7572
7578
|
payment_id?: string;
|
|
7579
|
+
/**
|
|
7580
|
+
* Whether the payment is live (true) or a test payment (false), based on its payment rail. Absent if the payment rail is unknown.
|
|
7581
|
+
* @type {boolean}
|
|
7582
|
+
* @memberof PaymentResponse
|
|
7583
|
+
*/
|
|
7584
|
+
live?: boolean | null;
|
|
7573
7585
|
/**
|
|
7574
7586
|
* Amount to be paid, in currency\'s smallest unit or “minor unit”, as defined in ISO 4217. For example, HKD 100.01 is represented as amount = 10001 (minor unit = cents). For currencies without minor units (e.g. VND, JPY), the amount is represented as is, without modification. For example, VND 15101 is represented as amount = 15101.
|
|
7575
7587
|
* @type {number}
|