@finverse/sdk-typescript 0.0.104 → 0.0.105
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 +16 -0
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -988,6 +988,14 @@ export interface CreateSenderAccountRequest {
|
|
|
988
988
|
* @memberof CreateSenderAccountRequest
|
|
989
989
|
*/
|
|
990
990
|
sender_id: string;
|
|
991
|
+
/**
|
|
992
|
+
* Additional attributes of the sender account in key:value format (e.g. sender_id: 1234). It supports up to 10 key:value pairs, whereas the key and value supports up to 50 and 500 characters respectively.
|
|
993
|
+
* @type {{ [key: string]: string; }}
|
|
994
|
+
* @memberof CreateSenderAccountRequest
|
|
995
|
+
*/
|
|
996
|
+
metadata?: {
|
|
997
|
+
[key: string]: string;
|
|
998
|
+
};
|
|
991
999
|
}
|
|
992
1000
|
export declare const CreateSenderAccountRequestAccountTypeEnum: {
|
|
993
1001
|
readonly ExternalAccount: "EXTERNAL_ACCOUNT";
|
|
@@ -4382,6 +4390,14 @@ export interface SenderAccountResponse {
|
|
|
4382
4390
|
* @memberof SenderAccountResponse
|
|
4383
4391
|
*/
|
|
4384
4392
|
sender_id?: string;
|
|
4393
|
+
/**
|
|
4394
|
+
* Additional attributes of the sender account in key:value format (e.g. sender_id: 1234). It supports up to 10 key:value pairs, whereas the key and value supports up to 50 and 500 characters respectively.
|
|
4395
|
+
* @type {{ [key: string]: string; }}
|
|
4396
|
+
* @memberof SenderAccountResponse
|
|
4397
|
+
*/
|
|
4398
|
+
metadata?: {
|
|
4399
|
+
[key: string]: string;
|
|
4400
|
+
};
|
|
4385
4401
|
/**
|
|
4386
4402
|
* Timestamp of when the sender was created in ISO format (YYYY-MM-DDTHH:MM:SS.SSSZ)
|
|
4387
4403
|
* @type {string}
|