@finverse/sdk-typescript 0.0.86 → 0.0.87
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 +36 -0
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -3724,6 +3724,42 @@ export interface PayoutInstructionResponse {
|
|
|
3724
3724
|
* @memberof PayoutInstructionResponse
|
|
3725
3725
|
*/
|
|
3726
3726
|
status: PayoutInstructionResponseStatusEnum;
|
|
3727
|
+
/**
|
|
3728
|
+
* The mandate used to execute payments for this payout instruction. Currency for the mandate must be supported by the recipient account
|
|
3729
|
+
* @type {string}
|
|
3730
|
+
* @memberof PayoutInstructionResponse
|
|
3731
|
+
*/
|
|
3732
|
+
mandate_id?: string;
|
|
3733
|
+
/**
|
|
3734
|
+
* The recipient account to receive the payment
|
|
3735
|
+
* @type {string}
|
|
3736
|
+
* @memberof PayoutInstructionResponse
|
|
3737
|
+
*/
|
|
3738
|
+
recipient_account_id?: string;
|
|
3739
|
+
/**
|
|
3740
|
+
* 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.
|
|
3741
|
+
* @type {number}
|
|
3742
|
+
* @memberof PayoutInstructionResponse
|
|
3743
|
+
*/
|
|
3744
|
+
amount?: number;
|
|
3745
|
+
/**
|
|
3746
|
+
* YYYY-MM-DD, date (in UTC) to execute the payment, must be 1 day later than current date
|
|
3747
|
+
* @type {string}
|
|
3748
|
+
* @memberof PayoutInstructionResponse
|
|
3749
|
+
*/
|
|
3750
|
+
date?: string;
|
|
3751
|
+
/**
|
|
3752
|
+
* A description for the payment (that will appear as the transaction description on bank statements)
|
|
3753
|
+
* @type {string}
|
|
3754
|
+
* @memberof PayoutInstructionResponse
|
|
3755
|
+
*/
|
|
3756
|
+
description?: string;
|
|
3757
|
+
/**
|
|
3758
|
+
* The currency code as defined in ISO 4217.
|
|
3759
|
+
* @type {string}
|
|
3760
|
+
* @memberof PayoutInstructionResponse
|
|
3761
|
+
*/
|
|
3762
|
+
currency?: string;
|
|
3727
3763
|
/**
|
|
3728
3764
|
*
|
|
3729
3765
|
* @type {FvErrorModel}
|