@finverse/sdk-typescript 0.0.389 → 0.0.391
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 +18 -0
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -5826,6 +5826,12 @@ export interface MandateRecipientAccount {
|
|
|
5826
5826
|
* @memberof MandateRecipientAccount
|
|
5827
5827
|
*/
|
|
5828
5828
|
account_type: MandateRecipientAccountAccountTypeEnum;
|
|
5829
|
+
/**
|
|
5830
|
+
* Optional reference identifier for the settlement account. Only applicable to settlement accounts.
|
|
5831
|
+
* @type {string}
|
|
5832
|
+
* @memberof MandateRecipientAccount
|
|
5833
|
+
*/
|
|
5834
|
+
settlement_account_reference?: string;
|
|
5829
5835
|
}
|
|
5830
5836
|
export declare const MandateRecipientAccountAccountTypeEnum: {
|
|
5831
5837
|
readonly ExternalAccount: "EXTERNAL_ACCOUNT";
|
|
@@ -6184,6 +6190,12 @@ export interface PaymentAccountDetails {
|
|
|
6184
6190
|
* @memberof PaymentAccountDetails
|
|
6185
6191
|
*/
|
|
6186
6192
|
legal_entity_name?: string;
|
|
6193
|
+
/**
|
|
6194
|
+
* Optional reference identifier for the settlement account. Only applicable to settlement accounts.
|
|
6195
|
+
* @type {string}
|
|
6196
|
+
* @memberof PaymentAccountDetails
|
|
6197
|
+
*/
|
|
6198
|
+
settlement_account_reference?: string;
|
|
6187
6199
|
/**
|
|
6188
6200
|
* Additional attributes of the sender account in key:value format (e.g. sender_id: 1234). It supports up to 20 key:value pairs, whereas the key and value supports up to 50 and 1000 characters respectively.
|
|
6189
6201
|
* @type {{ [key: string]: string; }}
|
|
@@ -6300,6 +6312,12 @@ export interface PaymentAccountDetailsWithEnrichedData {
|
|
|
6300
6312
|
* @memberof PaymentAccountDetailsWithEnrichedData
|
|
6301
6313
|
*/
|
|
6302
6314
|
legal_entity_name?: string;
|
|
6315
|
+
/**
|
|
6316
|
+
* Optional reference identifier for the settlement account. Only applicable to settlement accounts.
|
|
6317
|
+
* @type {string}
|
|
6318
|
+
* @memberof PaymentAccountDetailsWithEnrichedData
|
|
6319
|
+
*/
|
|
6320
|
+
settlement_account_reference?: string;
|
|
6303
6321
|
/**
|
|
6304
6322
|
* Additional attributes of the sender account in key:value format (e.g. sender_id: 1234). It supports up to 20 key:value pairs, whereas the key and value supports up to 50 and 1000 characters respectively.
|
|
6305
6323
|
* @type {{ [key: string]: string; }}
|