@finverse/sdk-typescript 0.0.118 → 0.0.120
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 +0 -656
- package/dist/api.js +1 -527
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -671,12 +671,6 @@ export interface CreateMandateRequest {
|
|
|
671
671
|
* @memberof CreateMandateRequest
|
|
672
672
|
*/
|
|
673
673
|
sender: CreateMandateSender;
|
|
674
|
-
/**
|
|
675
|
-
*
|
|
676
|
-
* @type {CreateMandateSenderAccount}
|
|
677
|
-
* @memberof CreateMandateRequest
|
|
678
|
-
*/
|
|
679
|
-
sender_account?: CreateMandateSenderAccount;
|
|
680
674
|
/**
|
|
681
675
|
*
|
|
682
676
|
* @type {MandateDetails}
|
|
@@ -771,12 +765,6 @@ export declare type CreateMandateResponseStatusEnum = (typeof CreateMandateRespo
|
|
|
771
765
|
* @interface CreateMandateSender
|
|
772
766
|
*/
|
|
773
767
|
export interface CreateMandateSender {
|
|
774
|
-
/**
|
|
775
|
-
* A unique identifier generated after creating sender
|
|
776
|
-
* @type {string}
|
|
777
|
-
* @memberof CreateMandateSender
|
|
778
|
-
*/
|
|
779
|
-
sender_id?: string;
|
|
780
768
|
/**
|
|
781
769
|
*
|
|
782
770
|
* @type {string}
|
|
@@ -789,12 +777,6 @@ export interface CreateMandateSender {
|
|
|
789
777
|
* @memberof CreateMandateSender
|
|
790
778
|
*/
|
|
791
779
|
user_id?: string;
|
|
792
|
-
/**
|
|
793
|
-
* Customer App\'s reference ID, representing the sender\'s account or billing reference number.
|
|
794
|
-
* @type {string}
|
|
795
|
-
* @memberof CreateMandateSender
|
|
796
|
-
*/
|
|
797
|
-
sender_reference_id?: string;
|
|
798
780
|
/**
|
|
799
781
|
* Type of account held by the Sender at the Institution. Possible values are INDIVIDUAL, BUSINESS
|
|
800
782
|
* @type {string}
|
|
@@ -813,19 +795,6 @@ export declare const CreateMandateSenderSenderTypeEnum: {
|
|
|
813
795
|
readonly Business: "BUSINESS";
|
|
814
796
|
};
|
|
815
797
|
export declare type CreateMandateSenderSenderTypeEnum = (typeof CreateMandateSenderSenderTypeEnum)[keyof typeof CreateMandateSenderSenderTypeEnum];
|
|
816
|
-
/**
|
|
817
|
-
*
|
|
818
|
-
* @export
|
|
819
|
-
* @interface CreateMandateSenderAccount
|
|
820
|
-
*/
|
|
821
|
-
export interface CreateMandateSenderAccount {
|
|
822
|
-
/**
|
|
823
|
-
* A unique identifier generated after creating sender account
|
|
824
|
-
* @type {string}
|
|
825
|
-
* @memberof CreateMandateSenderAccount
|
|
826
|
-
*/
|
|
827
|
-
sender_account_id?: string;
|
|
828
|
-
}
|
|
829
798
|
/**
|
|
830
799
|
*
|
|
831
800
|
* @export
|
|
@@ -1000,138 +969,6 @@ export declare const CreateRecipientAccountAccountTypeEnum: {
|
|
|
1000
969
|
readonly ExternalAccount: "EXTERNAL_ACCOUNT";
|
|
1001
970
|
};
|
|
1002
971
|
export declare type CreateRecipientAccountAccountTypeEnum = (typeof CreateRecipientAccountAccountTypeEnum)[keyof typeof CreateRecipientAccountAccountTypeEnum];
|
|
1003
|
-
/**
|
|
1004
|
-
*
|
|
1005
|
-
* @export
|
|
1006
|
-
* @interface CreateRecipientRequest
|
|
1007
|
-
*/
|
|
1008
|
-
export interface CreateRecipientRequest {
|
|
1009
|
-
/**
|
|
1010
|
-
* Recipient\'s name/nickname (note: this does not need to match the actual accountholder name of the recipient\'s account)
|
|
1011
|
-
* @type {string}
|
|
1012
|
-
* @memberof CreateRecipientRequest
|
|
1013
|
-
*/
|
|
1014
|
-
name: string;
|
|
1015
|
-
/**
|
|
1016
|
-
*
|
|
1017
|
-
* @type {CreateRecipientAccount}
|
|
1018
|
-
* @memberof CreateRecipientRequest
|
|
1019
|
-
*/
|
|
1020
|
-
recipient_account: CreateRecipientAccount;
|
|
1021
|
-
/**
|
|
1022
|
-
* Customer App\'s internal ID for the recipient
|
|
1023
|
-
* @type {string}
|
|
1024
|
-
* @memberof CreateRecipientRequest
|
|
1025
|
-
*/
|
|
1026
|
-
user_id: string;
|
|
1027
|
-
/**
|
|
1028
|
-
* Additional attributes of the recipient in key:value format (e.g. employer_name: Apple Inc for a payroll case where recipient is an employee)
|
|
1029
|
-
* @type {{ [key: string]: string; }}
|
|
1030
|
-
* @memberof CreateRecipientRequest
|
|
1031
|
-
*/
|
|
1032
|
-
metadata?: {
|
|
1033
|
-
[key: string]: string;
|
|
1034
|
-
};
|
|
1035
|
-
}
|
|
1036
|
-
/**
|
|
1037
|
-
*
|
|
1038
|
-
* @export
|
|
1039
|
-
* @interface CreateSenderAccountRequest
|
|
1040
|
-
*/
|
|
1041
|
-
export interface CreateSenderAccountRequest {
|
|
1042
|
-
/**
|
|
1043
|
-
* Accountholder name of the sender\'s account
|
|
1044
|
-
* @type {string}
|
|
1045
|
-
* @memberof CreateSenderAccountRequest
|
|
1046
|
-
*/
|
|
1047
|
-
accountholder_name: string;
|
|
1048
|
-
/**
|
|
1049
|
-
*
|
|
1050
|
-
* @type {RecipientAccountNumber}
|
|
1051
|
-
* @memberof CreateSenderAccountRequest
|
|
1052
|
-
*/
|
|
1053
|
-
account_number: RecipientAccountNumber;
|
|
1054
|
-
/**
|
|
1055
|
-
* Type of sender account.
|
|
1056
|
-
* @type {string}
|
|
1057
|
-
* @memberof CreateSenderAccountRequest
|
|
1058
|
-
*/
|
|
1059
|
-
account_type: CreateSenderAccountRequestAccountTypeEnum;
|
|
1060
|
-
/**
|
|
1061
|
-
* Finverse Institution ID for the sender’s institution.
|
|
1062
|
-
* @type {string}
|
|
1063
|
-
* @memberof CreateSenderAccountRequest
|
|
1064
|
-
*/
|
|
1065
|
-
institution_id: string;
|
|
1066
|
-
/**
|
|
1067
|
-
* A unique identifier generated after creating sender
|
|
1068
|
-
* @type {string}
|
|
1069
|
-
* @memberof CreateSenderAccountRequest
|
|
1070
|
-
*/
|
|
1071
|
-
sender_id: string;
|
|
1072
|
-
/**
|
|
1073
|
-
* 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.
|
|
1074
|
-
* @type {{ [key: string]: string; }}
|
|
1075
|
-
* @memberof CreateSenderAccountRequest
|
|
1076
|
-
*/
|
|
1077
|
-
metadata?: {
|
|
1078
|
-
[key: string]: string;
|
|
1079
|
-
};
|
|
1080
|
-
}
|
|
1081
|
-
export declare const CreateSenderAccountRequestAccountTypeEnum: {
|
|
1082
|
-
readonly ExternalAccount: "EXTERNAL_ACCOUNT";
|
|
1083
|
-
};
|
|
1084
|
-
export declare type CreateSenderAccountRequestAccountTypeEnum = (typeof CreateSenderAccountRequestAccountTypeEnum)[keyof typeof CreateSenderAccountRequestAccountTypeEnum];
|
|
1085
|
-
/**
|
|
1086
|
-
*
|
|
1087
|
-
* @export
|
|
1088
|
-
* @interface CreateSenderRequest
|
|
1089
|
-
*/
|
|
1090
|
-
export interface CreateSenderRequest {
|
|
1091
|
-
/**
|
|
1092
|
-
* Sender’s name/nickname (note: this does not need to match the actual accountholder name of the sender’s account)
|
|
1093
|
-
* @type {string}
|
|
1094
|
-
* @memberof CreateSenderRequest
|
|
1095
|
-
*/
|
|
1096
|
-
name: string;
|
|
1097
|
-
/**
|
|
1098
|
-
* Customer App\'s internal ID for the sender
|
|
1099
|
-
* @type {string}
|
|
1100
|
-
* @memberof CreateSenderRequest
|
|
1101
|
-
*/
|
|
1102
|
-
user_id: string;
|
|
1103
|
-
/**
|
|
1104
|
-
* Sender details which will be used for fraud checking.
|
|
1105
|
-
* @type {Array<SenderDetail>}
|
|
1106
|
-
* @memberof CreateSenderRequest
|
|
1107
|
-
*/
|
|
1108
|
-
sender_details?: Array<SenderDetail>;
|
|
1109
|
-
/**
|
|
1110
|
-
* Customer reference for the sender
|
|
1111
|
-
* @type {string}
|
|
1112
|
-
* @memberof CreateSenderRequest
|
|
1113
|
-
*/
|
|
1114
|
-
sender_reference_id?: string;
|
|
1115
|
-
/**
|
|
1116
|
-
* Type of account held by the Sender at the Institution. Possible values are INDIVIDUAL, BUSINESS
|
|
1117
|
-
* @type {string}
|
|
1118
|
-
* @memberof CreateSenderRequest
|
|
1119
|
-
*/
|
|
1120
|
-
sender_type: CreateSenderRequestSenderTypeEnum;
|
|
1121
|
-
/**
|
|
1122
|
-
* Additional attributes of the sender in key:value format (e.g. employer_name: Apple Inc for a payroll case where sender is an employee)
|
|
1123
|
-
* @type {{ [key: string]: string; }}
|
|
1124
|
-
* @memberof CreateSenderRequest
|
|
1125
|
-
*/
|
|
1126
|
-
metadata?: {
|
|
1127
|
-
[key: string]: string;
|
|
1128
|
-
};
|
|
1129
|
-
}
|
|
1130
|
-
export declare const CreateSenderRequestSenderTypeEnum: {
|
|
1131
|
-
readonly Individual: "INDIVIDUAL";
|
|
1132
|
-
readonly Business: "BUSINESS";
|
|
1133
|
-
};
|
|
1134
|
-
export declare type CreateSenderRequestSenderTypeEnum = (typeof CreateSenderRequestSenderTypeEnum)[keyof typeof CreateSenderRequestSenderTypeEnum];
|
|
1135
972
|
/**
|
|
1136
973
|
*
|
|
1137
974
|
* @export
|
|
@@ -1871,12 +1708,6 @@ export interface GetMandateSender {
|
|
|
1871
1708
|
* @memberof GetMandateSender
|
|
1872
1709
|
*/
|
|
1873
1710
|
user_id: string;
|
|
1874
|
-
/**
|
|
1875
|
-
* Customer App\'s reference ID, representing the sender\'s account or billing reference number.
|
|
1876
|
-
* @type {string}
|
|
1877
|
-
* @memberof GetMandateSender
|
|
1878
|
-
*/
|
|
1879
|
-
sender_reference_id?: string;
|
|
1880
1711
|
/**
|
|
1881
1712
|
* Type of account held by the Sender at the Institution. Possible values are INDIVIDUAL, BUSINESS
|
|
1882
1713
|
* @type {string}
|
|
@@ -4436,49 +4267,6 @@ export declare const RecipientAccountResponseAccountTypeEnum: {
|
|
|
4436
4267
|
readonly SettlementAccount: "SETTLEMENT_ACCOUNT";
|
|
4437
4268
|
};
|
|
4438
4269
|
export declare type RecipientAccountResponseAccountTypeEnum = (typeof RecipientAccountResponseAccountTypeEnum)[keyof typeof RecipientAccountResponseAccountTypeEnum];
|
|
4439
|
-
/**
|
|
4440
|
-
*
|
|
4441
|
-
* @export
|
|
4442
|
-
* @interface RecipientResponse
|
|
4443
|
-
*/
|
|
4444
|
-
export interface RecipientResponse {
|
|
4445
|
-
/**
|
|
4446
|
-
* Recipient\'s name/nickname (note: this does not need to match the actual accountholder name of the recipient\'s account)
|
|
4447
|
-
* @type {string}
|
|
4448
|
-
* @memberof RecipientResponse
|
|
4449
|
-
*/
|
|
4450
|
-
name?: string;
|
|
4451
|
-
/**
|
|
4452
|
-
*
|
|
4453
|
-
* @type {RecipientAccountResponse}
|
|
4454
|
-
* @memberof RecipientResponse
|
|
4455
|
-
*/
|
|
4456
|
-
recipient_account?: RecipientAccountResponse;
|
|
4457
|
-
/**
|
|
4458
|
-
* Customer App\'s internal ID for the recipient
|
|
4459
|
-
* @type {string}
|
|
4460
|
-
* @memberof RecipientResponse
|
|
4461
|
-
*/
|
|
4462
|
-
user_id?: string;
|
|
4463
|
-
/**
|
|
4464
|
-
* Additional attributes of the recipient in key:value format (e.g. employer_name: Apple Inc for a payroll case where recipient is an employee)
|
|
4465
|
-
* @type {object}
|
|
4466
|
-
* @memberof RecipientResponse
|
|
4467
|
-
*/
|
|
4468
|
-
metadata?: object;
|
|
4469
|
-
/**
|
|
4470
|
-
* Timestamp of when the recipient was created in ISO format (YYYY-MM-DDTHH:MM:SS.SSSZ)
|
|
4471
|
-
* @type {string}
|
|
4472
|
-
* @memberof RecipientResponse
|
|
4473
|
-
*/
|
|
4474
|
-
created_at?: string;
|
|
4475
|
-
/**
|
|
4476
|
-
* Timestamp of when the recipient was last updated in ISO format (YYYY-MM-DDTHH:MM:SS.SSSZ)
|
|
4477
|
-
* @type {string}
|
|
4478
|
-
* @memberof RecipientResponse
|
|
4479
|
-
*/
|
|
4480
|
-
updated_at?: string;
|
|
4481
|
-
}
|
|
4482
4270
|
/**
|
|
4483
4271
|
*
|
|
4484
4272
|
* @export
|
|
@@ -4543,86 +4331,6 @@ export interface RelinkRequest {
|
|
|
4543
4331
|
*/
|
|
4544
4332
|
consent?: boolean | null;
|
|
4545
4333
|
}
|
|
4546
|
-
/**
|
|
4547
|
-
*
|
|
4548
|
-
* @export
|
|
4549
|
-
* @interface SenderAccountResponse
|
|
4550
|
-
*/
|
|
4551
|
-
export interface SenderAccountResponse {
|
|
4552
|
-
/**
|
|
4553
|
-
* A unique identifier generated after creating sender account
|
|
4554
|
-
* @type {string}
|
|
4555
|
-
* @memberof SenderAccountResponse
|
|
4556
|
-
*/
|
|
4557
|
-
sender_account_id?: string;
|
|
4558
|
-
/**
|
|
4559
|
-
* Accountholder name of the sender\'s account
|
|
4560
|
-
* @type {string}
|
|
4561
|
-
* @memberof SenderAccountResponse
|
|
4562
|
-
*/
|
|
4563
|
-
accountholder_name?: string;
|
|
4564
|
-
/**
|
|
4565
|
-
*
|
|
4566
|
-
* @type {RecipientAccountNumber}
|
|
4567
|
-
* @memberof SenderAccountResponse
|
|
4568
|
-
*/
|
|
4569
|
-
account_number?: RecipientAccountNumber;
|
|
4570
|
-
/**
|
|
4571
|
-
* Type of sender account.
|
|
4572
|
-
* @type {string}
|
|
4573
|
-
* @memberof SenderAccountResponse
|
|
4574
|
-
*/
|
|
4575
|
-
account_type?: SenderAccountResponseAccountTypeEnum;
|
|
4576
|
-
/**
|
|
4577
|
-
* Finverse Institution ID for the sender’s institution.
|
|
4578
|
-
* @type {string}
|
|
4579
|
-
* @memberof SenderAccountResponse
|
|
4580
|
-
*/
|
|
4581
|
-
institution_id?: string;
|
|
4582
|
-
/**
|
|
4583
|
-
* A unique identifier generated after creating sender
|
|
4584
|
-
* @type {string}
|
|
4585
|
-
* @memberof SenderAccountResponse
|
|
4586
|
-
*/
|
|
4587
|
-
sender_id?: string;
|
|
4588
|
-
/**
|
|
4589
|
-
* 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.
|
|
4590
|
-
* @type {{ [key: string]: string; }}
|
|
4591
|
-
* @memberof SenderAccountResponse
|
|
4592
|
-
*/
|
|
4593
|
-
metadata?: {
|
|
4594
|
-
[key: string]: string;
|
|
4595
|
-
};
|
|
4596
|
-
/**
|
|
4597
|
-
* Timestamp of when the sender was created in ISO format (YYYY-MM-DDTHH:MM:SS.SSSZ)
|
|
4598
|
-
* @type {string}
|
|
4599
|
-
* @memberof SenderAccountResponse
|
|
4600
|
-
*/
|
|
4601
|
-
created_at?: string;
|
|
4602
|
-
/**
|
|
4603
|
-
* Timestamp of when the sender was last updated in ISO format (YYYY-MM-DDTHH:MM:SS.SSSZ)
|
|
4604
|
-
* @type {string}
|
|
4605
|
-
* @memberof SenderAccountResponse
|
|
4606
|
-
*/
|
|
4607
|
-
updated_at?: string;
|
|
4608
|
-
}
|
|
4609
|
-
export declare const SenderAccountResponseAccountTypeEnum: {
|
|
4610
|
-
readonly ExternalAccount: "EXTERNAL_ACCOUNT";
|
|
4611
|
-
};
|
|
4612
|
-
export declare type SenderAccountResponseAccountTypeEnum = (typeof SenderAccountResponseAccountTypeEnum)[keyof typeof SenderAccountResponseAccountTypeEnum];
|
|
4613
|
-
/**
|
|
4614
|
-
*
|
|
4615
|
-
* @export
|
|
4616
|
-
* @interface SenderAccountsResponse
|
|
4617
|
-
*/
|
|
4618
|
-
export interface SenderAccountsResponse {
|
|
4619
|
-
/**
|
|
4620
|
-
*
|
|
4621
|
-
* @type {Array<SenderAccountResponse>}
|
|
4622
|
-
* @memberof SenderAccountsResponse
|
|
4623
|
-
*/
|
|
4624
|
-
sender_accounts?: Array<SenderAccountResponse>;
|
|
4625
|
-
}
|
|
4626
4334
|
/**
|
|
4627
4335
|
*
|
|
4628
4336
|
* @export
|
|
@@ -4649,74 +4357,6 @@ export declare const SenderDetailDetailsTypeEnum: {
|
|
|
4649
4357
|
readonly HkCertificateOfIncorporation: "HK_CERTIFICATE_OF_INCORPORATION";
|
|
4650
4358
|
};
|
|
4651
4359
|
export declare type SenderDetailDetailsTypeEnum = (typeof SenderDetailDetailsTypeEnum)[keyof typeof SenderDetailDetailsTypeEnum];
|
|
4652
|
-
/**
|
|
4653
|
-
*
|
|
4654
|
-
* @export
|
|
4655
|
-
* @interface SenderResponse
|
|
4656
|
-
*/
|
|
4657
|
-
export interface SenderResponse {
|
|
4658
|
-
/**
|
|
4659
|
-
* A unique identifier generated after creating sender
|
|
4660
|
-
* @type {string}
|
|
4661
|
-
* @memberof SenderResponse
|
|
4662
|
-
*/
|
|
4663
|
-
sender_id?: string;
|
|
4664
|
-
/**
|
|
4665
|
-
* Customer App\'s internal ID for the sender
|
|
4666
|
-
* @type {string}
|
|
4667
|
-
* @memberof SenderResponse
|
|
4668
|
-
*/
|
|
4669
|
-
user_id?: string;
|
|
4670
|
-
/**
|
|
4671
|
-
* Sender’s name/nickname (note: this does not need to match the actual accountholder name of the sender’s account)
|
|
4672
|
-
* @type {string}
|
|
4673
|
-
* @memberof SenderResponse
|
|
4674
|
-
*/
|
|
4675
|
-
name?: string;
|
|
4676
|
-
/**
|
|
4677
|
-
* Sender details which will be used for fraud checking.
|
|
4678
|
-
* @type {Array<SenderDetail>}
|
|
4679
|
-
* @memberof SenderResponse
|
|
4680
|
-
*/
|
|
4681
|
-
sender_details?: Array<SenderDetail>;
|
|
4682
|
-
/**
|
|
4683
|
-
* Customer reference for the sender
|
|
4684
|
-
* @type {string}
|
|
4685
|
-
* @memberof SenderResponse
|
|
4686
|
-
*/
|
|
4687
|
-
sender_reference_id?: string;
|
|
4688
|
-
/**
|
|
4689
|
-
* Type of account held by the Sender at the Institution. Possible values are INDIVIDUAL, BUSINESS
|
|
4690
|
-
* @type {string}
|
|
4691
|
-
* @memberof SenderResponse
|
|
4692
|
-
*/
|
|
4693
|
-
sender_type?: SenderResponseSenderTypeEnum;
|
|
4694
|
-
/**
|
|
4695
|
-
* Additional attributes of the sender in key:value format (e.g. employer_name: Apple Inc for a payroll case where sender is an employee)
|
|
4696
|
-
* @type {{ [key: string]: string; }}
|
|
4697
|
-
* @memberof SenderResponse
|
|
4698
|
-
*/
|
|
4699
|
-
metadata?: {
|
|
4700
|
-
[key: string]: string;
|
|
4701
|
-
};
|
|
4702
|
-
/**
|
|
4703
|
-
* Timestamp of when the sender was created in ISO format (YYYY-MM-DDTHH:MM:SS.SSSZ)
|
|
4704
|
-
* @type {string}
|
|
4705
|
-
* @memberof SenderResponse
|
|
4706
|
-
*/
|
|
4707
|
-
created_at?: string;
|
|
4708
|
-
/**
|
|
4709
|
-
* Timestamp of when the sender was last updated in ISO format (YYYY-MM-DDTHH:MM:SS.SSSZ)
|
|
4710
|
-
* @type {string}
|
|
4711
|
-
* @memberof SenderResponse
|
|
4712
|
-
*/
|
|
4713
|
-
updated_at?: string;
|
|
4714
|
-
}
|
|
4715
|
-
export declare const SenderResponseSenderTypeEnum: {
|
|
4716
|
-
readonly Individual: "INDIVIDUAL";
|
|
4717
|
-
readonly Business: "BUSINESS";
|
|
4718
|
-
};
|
|
4719
|
-
export declare type SenderResponseSenderTypeEnum = (typeof SenderResponseSenderTypeEnum)[keyof typeof SenderResponseSenderTypeEnum];
|
|
4720
4360
|
/**
|
|
4721
4361
|
*
|
|
4722
4362
|
* @export
|
|
@@ -5289,41 +4929,6 @@ export declare const CustomerApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
5289
4929
|
* @throws {RequiredError}
|
|
5290
4930
|
*/
|
|
5291
4931
|
createPayoutInstruction: (createPayoutInstructionRequest: CreatePayoutInstructionRequest, idempotencyKey?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5292
|
-
/**
|
|
5293
|
-
* Create Recipients
|
|
5294
|
-
* @param {CreateRecipientRequest} createRecipientRequest request body for creating recipient
|
|
5295
|
-
* @param {*} [options] Override http request option.
|
|
5296
|
-
* @throws {RequiredError}
|
|
5297
|
-
*/
|
|
5298
|
-
createRecipient: (createRecipientRequest: CreateRecipientRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5299
|
-
/**
|
|
5300
|
-
* Create Sender
|
|
5301
|
-
* @param {CreateSenderRequest} createSenderRequest request body for creating sender
|
|
5302
|
-
* @param {*} [options] Override http request option.
|
|
5303
|
-
* @throws {RequiredError}
|
|
5304
|
-
*/
|
|
5305
|
-
createSender: (createSenderRequest: CreateSenderRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5306
|
-
/**
|
|
5307
|
-
* Create Sender Account
|
|
5308
|
-
* @param {CreateSenderAccountRequest} createSenderAccountRequest request body for creating senderAccount
|
|
5309
|
-
* @param {*} [options] Override http request option.
|
|
5310
|
-
* @throws {RequiredError}
|
|
5311
|
-
*/
|
|
5312
|
-
createSenderAccount: (createSenderAccountRequest: CreateSenderAccountRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5313
|
-
/**
|
|
5314
|
-
* Delete Recipient
|
|
5315
|
-
* @param {string} recipientAccountId The institution id
|
|
5316
|
-
* @param {*} [options] Override http request option.
|
|
5317
|
-
* @throws {RequiredError}
|
|
5318
|
-
*/
|
|
5319
|
-
deleteRecipient: (recipientAccountId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5320
|
-
/**
|
|
5321
|
-
* Delete Sender Account
|
|
5322
|
-
* @param {string} senderAccountId The sender account id
|
|
5323
|
-
* @param {*} [options] Override http request option.
|
|
5324
|
-
* @throws {RequiredError}
|
|
5325
|
-
*/
|
|
5326
|
-
deleteSenderAccount: (senderAccountId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5327
4932
|
/**
|
|
5328
4933
|
* generate a link token that can be used to create link
|
|
5329
4934
|
* @param {LinkTokenRequest} linkTokenRequest token request
|
|
@@ -5393,27 +4998,6 @@ export declare const CustomerApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
5393
4998
|
* @throws {RequiredError}
|
|
5394
4999
|
*/
|
|
5395
5000
|
getPayoutInstruction: (payoutInstructionId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5396
|
-
/**
|
|
5397
|
-
* Get Recipient
|
|
5398
|
-
* @param {string} recipientAccountId The institution id
|
|
5399
|
-
* @param {*} [options] Override http request option.
|
|
5400
|
-
* @throws {RequiredError}
|
|
5401
|
-
*/
|
|
5402
|
-
getRecipient: (recipientAccountId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5403
|
-
/**
|
|
5404
|
-
* Get Sender
|
|
5405
|
-
* @param {string} senderId The sender id
|
|
5406
|
-
* @param {*} [options] Override http request option.
|
|
5407
|
-
* @throws {RequiredError}
|
|
5408
|
-
*/
|
|
5409
|
-
getSender: (senderId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5410
|
-
/**
|
|
5411
|
-
* Get Sender Accounts associated with a senderId
|
|
5412
|
-
* @param {string} senderId The sender id
|
|
5413
|
-
* @param {*} [options] Override http request option.
|
|
5414
|
-
* @throws {RequiredError}
|
|
5415
|
-
*/
|
|
5416
|
-
getSenderAccounts: (senderId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5417
5001
|
/**
|
|
5418
5002
|
* Get a list of institutions
|
|
5419
5003
|
* @param {string} [country] (Deprecated) The country the institution belongs to
|
|
@@ -5489,41 +5073,6 @@ export declare const CustomerApiFp: (configuration?: Configuration) => {
|
|
|
5489
5073
|
* @throws {RequiredError}
|
|
5490
5074
|
*/
|
|
5491
5075
|
createPayoutInstruction(createPayoutInstructionRequest: CreatePayoutInstructionRequest, idempotencyKey?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PayoutInstructionResponse>>;
|
|
5492
|
-
/**
|
|
5493
|
-
* Create Recipients
|
|
5494
|
-
* @param {CreateRecipientRequest} createRecipientRequest request body for creating recipient
|
|
5495
|
-
* @param {*} [options] Override http request option.
|
|
5496
|
-
* @throws {RequiredError}
|
|
5497
|
-
*/
|
|
5498
|
-
createRecipient(createRecipientRequest: CreateRecipientRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RecipientResponse>>;
|
|
5499
|
-
/**
|
|
5500
|
-
* Create Sender
|
|
5501
|
-
* @param {CreateSenderRequest} createSenderRequest request body for creating sender
|
|
5502
|
-
* @param {*} [options] Override http request option.
|
|
5503
|
-
* @throws {RequiredError}
|
|
5504
|
-
*/
|
|
5505
|
-
createSender(createSenderRequest: CreateSenderRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SenderResponse>>;
|
|
5506
|
-
/**
|
|
5507
|
-
* Create Sender Account
|
|
5508
|
-
* @param {CreateSenderAccountRequest} createSenderAccountRequest request body for creating senderAccount
|
|
5509
|
-
* @param {*} [options] Override http request option.
|
|
5510
|
-
* @throws {RequiredError}
|
|
5511
|
-
*/
|
|
5512
|
-
createSenderAccount(createSenderAccountRequest: CreateSenderAccountRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SenderAccountResponse>>;
|
|
5513
|
-
/**
|
|
5514
|
-
* Delete Recipient
|
|
5515
|
-
* @param {string} recipientAccountId The institution id
|
|
5516
|
-
* @param {*} [options] Override http request option.
|
|
5517
|
-
* @throws {RequiredError}
|
|
5518
|
-
*/
|
|
5519
|
-
deleteRecipient(recipientAccountId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
5520
|
-
/**
|
|
5521
|
-
* Delete Sender Account
|
|
5522
|
-
* @param {string} senderAccountId The sender account id
|
|
5523
|
-
* @param {*} [options] Override http request option.
|
|
5524
|
-
* @throws {RequiredError}
|
|
5525
|
-
*/
|
|
5526
|
-
deleteSenderAccount(senderAccountId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
5527
5076
|
/**
|
|
5528
5077
|
* generate a link token that can be used to create link
|
|
5529
5078
|
* @param {LinkTokenRequest} linkTokenRequest token request
|
|
@@ -5593,27 +5142,6 @@ export declare const CustomerApiFp: (configuration?: Configuration) => {
|
|
|
5593
5142
|
* @throws {RequiredError}
|
|
5594
5143
|
*/
|
|
5595
5144
|
getPayoutInstruction(payoutInstructionId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PayoutInstructionResponse>>;
|
|
5596
|
-
/**
|
|
5597
|
-
* Get Recipient
|
|
5598
|
-
* @param {string} recipientAccountId The institution id
|
|
5599
|
-
* @param {*} [options] Override http request option.
|
|
5600
|
-
* @throws {RequiredError}
|
|
5601
|
-
*/
|
|
5602
|
-
getRecipient(recipientAccountId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RecipientResponse>>;
|
|
5603
|
-
/**
|
|
5604
|
-
* Get Sender
|
|
5605
|
-
* @param {string} senderId The sender id
|
|
5606
|
-
* @param {*} [options] Override http request option.
|
|
5607
|
-
* @throws {RequiredError}
|
|
5608
|
-
*/
|
|
5609
|
-
getSender(senderId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SenderResponse>>;
|
|
5610
|
-
/**
|
|
5611
|
-
* Get Sender Accounts associated with a senderId
|
|
5612
|
-
* @param {string} senderId The sender id
|
|
5613
|
-
* @param {*} [options] Override http request option.
|
|
5614
|
-
* @throws {RequiredError}
|
|
5615
|
-
*/
|
|
5616
|
-
getSenderAccounts(senderId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SenderAccountsResponse>>;
|
|
5617
5145
|
/**
|
|
5618
5146
|
* Get a list of institutions
|
|
5619
5147
|
* @param {string} [country] (Deprecated) The country the institution belongs to
|
|
@@ -5689,41 +5217,6 @@ export declare const CustomerApiFactory: (configuration?: Configuration, basePat
|
|
|
5689
5217
|
* @throws {RequiredError}
|
|
5690
5218
|
*/
|
|
5691
5219
|
createPayoutInstruction(createPayoutInstructionRequest: CreatePayoutInstructionRequest, idempotencyKey?: string, options?: any): AxiosPromise<PayoutInstructionResponse>;
|
|
5692
|
-
/**
|
|
5693
|
-
* Create Recipients
|
|
5694
|
-
* @param {CreateRecipientRequest} createRecipientRequest request body for creating recipient
|
|
5695
|
-
* @param {*} [options] Override http request option.
|
|
5696
|
-
* @throws {RequiredError}
|
|
5697
|
-
*/
|
|
5698
|
-
createRecipient(createRecipientRequest: CreateRecipientRequest, options?: any): AxiosPromise<RecipientResponse>;
|
|
5699
|
-
/**
|
|
5700
|
-
* Create Sender
|
|
5701
|
-
* @param {CreateSenderRequest} createSenderRequest request body for creating sender
|
|
5702
|
-
* @param {*} [options] Override http request option.
|
|
5703
|
-
* @throws {RequiredError}
|
|
5704
|
-
*/
|
|
5705
|
-
createSender(createSenderRequest: CreateSenderRequest, options?: any): AxiosPromise<SenderResponse>;
|
|
5706
|
-
/**
|
|
5707
|
-
* Create Sender Account
|
|
5708
|
-
* @param {CreateSenderAccountRequest} createSenderAccountRequest request body for creating senderAccount
|
|
5709
|
-
* @param {*} [options] Override http request option.
|
|
5710
|
-
* @throws {RequiredError}
|
|
5711
|
-
*/
|
|
5712
|
-
createSenderAccount(createSenderAccountRequest: CreateSenderAccountRequest, options?: any): AxiosPromise<SenderAccountResponse>;
|
|
5713
|
-
/**
|
|
5714
|
-
* Delete Recipient
|
|
5715
|
-
* @param {string} recipientAccountId The institution id
|
|
5716
|
-
* @param {*} [options] Override http request option.
|
|
5717
|
-
* @throws {RequiredError}
|
|
5718
|
-
*/
|
|
5719
|
-
deleteRecipient(recipientAccountId: string, options?: any): AxiosPromise<void>;
|
|
5720
|
-
/**
|
|
5721
|
-
* Delete Sender Account
|
|
5722
|
-
* @param {string} senderAccountId The sender account id
|
|
5723
|
-
* @param {*} [options] Override http request option.
|
|
5724
|
-
* @throws {RequiredError}
|
|
5725
|
-
*/
|
|
5726
|
-
deleteSenderAccount(senderAccountId: string, options?: any): AxiosPromise<void>;
|
|
5727
5220
|
/**
|
|
5728
5221
|
* generate a link token that can be used to create link
|
|
5729
5222
|
* @param {LinkTokenRequest} linkTokenRequest token request
|
|
@@ -5793,27 +5286,6 @@ export declare const CustomerApiFactory: (configuration?: Configuration, basePat
|
|
|
5793
5286
|
* @throws {RequiredError}
|
|
5794
5287
|
*/
|
|
5795
5288
|
getPayoutInstruction(payoutInstructionId: string, options?: any): AxiosPromise<PayoutInstructionResponse>;
|
|
5796
|
-
/**
|
|
5797
|
-
* Get Recipient
|
|
5798
|
-
* @param {string} recipientAccountId The institution id
|
|
5799
|
-
* @param {*} [options] Override http request option.
|
|
5800
|
-
* @throws {RequiredError}
|
|
5801
|
-
*/
|
|
5802
|
-
getRecipient(recipientAccountId: string, options?: any): AxiosPromise<RecipientResponse>;
|
|
5803
|
-
/**
|
|
5804
|
-
* Get Sender
|
|
5805
|
-
* @param {string} senderId The sender id
|
|
5806
|
-
* @param {*} [options] Override http request option.
|
|
5807
|
-
* @throws {RequiredError}
|
|
5808
|
-
*/
|
|
5809
|
-
getSender(senderId: string, options?: any): AxiosPromise<SenderResponse>;
|
|
5810
|
-
/**
|
|
5811
|
-
* Get Sender Accounts associated with a senderId
|
|
5812
|
-
* @param {string} senderId The sender id
|
|
5813
|
-
* @param {*} [options] Override http request option.
|
|
5814
|
-
* @throws {RequiredError}
|
|
5815
|
-
*/
|
|
5816
|
-
getSenderAccounts(senderId: string, options?: any): AxiosPromise<SenderAccountsResponse>;
|
|
5817
5289
|
/**
|
|
5818
5290
|
* Get a list of institutions
|
|
5819
5291
|
* @param {string} [country] (Deprecated) The country the institution belongs to
|
|
@@ -5895,46 +5367,6 @@ export interface CustomerApiInterface {
|
|
|
5895
5367
|
* @memberof CustomerApiInterface
|
|
5896
5368
|
*/
|
|
5897
5369
|
createPayoutInstruction(createPayoutInstructionRequest: CreatePayoutInstructionRequest, idempotencyKey?: string, options?: AxiosRequestConfig): AxiosPromise<PayoutInstructionResponse>;
|
|
5898
|
-
/**
|
|
5899
|
-
* Create Recipients
|
|
5900
|
-
* @param {CreateRecipientRequest} createRecipientRequest request body for creating recipient
|
|
5901
|
-
* @param {*} [options] Override http request option.
|
|
5902
|
-
* @throws {RequiredError}
|
|
5903
|
-
* @memberof CustomerApiInterface
|
|
5904
|
-
*/
|
|
5905
|
-
createRecipient(createRecipientRequest: CreateRecipientRequest, options?: AxiosRequestConfig): AxiosPromise<RecipientResponse>;
|
|
5906
|
-
/**
|
|
5907
|
-
* Create Sender
|
|
5908
|
-
* @param {CreateSenderRequest} createSenderRequest request body for creating sender
|
|
5909
|
-
* @param {*} [options] Override http request option.
|
|
5910
|
-
* @throws {RequiredError}
|
|
5911
|
-
* @memberof CustomerApiInterface
|
|
5912
|
-
*/
|
|
5913
|
-
createSender(createSenderRequest: CreateSenderRequest, options?: AxiosRequestConfig): AxiosPromise<SenderResponse>;
|
|
5914
|
-
/**
|
|
5915
|
-
* Create Sender Account
|
|
5916
|
-
* @param {CreateSenderAccountRequest} createSenderAccountRequest request body for creating senderAccount
|
|
5917
|
-
* @param {*} [options] Override http request option.
|
|
5918
|
-
* @throws {RequiredError}
|
|
5919
|
-
* @memberof CustomerApiInterface
|
|
5920
|
-
*/
|
|
5921
|
-
createSenderAccount(createSenderAccountRequest: CreateSenderAccountRequest, options?: AxiosRequestConfig): AxiosPromise<SenderAccountResponse>;
|
|
5922
|
-
/**
|
|
5923
|
-
* Delete Recipient
|
|
5924
|
-
* @param {string} recipientAccountId The institution id
|
|
5925
|
-
* @param {*} [options] Override http request option.
|
|
5926
|
-
* @throws {RequiredError}
|
|
5927
|
-
* @memberof CustomerApiInterface
|
|
5928
|
-
*/
|
|
5929
|
-
deleteRecipient(recipientAccountId: string, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
5930
|
-
/**
|
|
5931
|
-
* Delete Sender Account
|
|
5932
|
-
* @param {string} senderAccountId The sender account id
|
|
5933
|
-
* @param {*} [options] Override http request option.
|
|
5934
|
-
* @throws {RequiredError}
|
|
5935
|
-
* @memberof CustomerApiInterface
|
|
5936
|
-
*/
|
|
5937
|
-
deleteSenderAccount(senderAccountId: string, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
5938
5370
|
/**
|
|
5939
5371
|
* generate a link token that can be used to create link
|
|
5940
5372
|
* @param {LinkTokenRequest} linkTokenRequest token request
|
|
@@ -6014,30 +5446,6 @@ export interface CustomerApiInterface {
|
|
|
6014
5446
|
* @memberof CustomerApiInterface
|
|
6015
5447
|
*/
|
|
6016
5448
|
getPayoutInstruction(payoutInstructionId: string, options?: AxiosRequestConfig): AxiosPromise<PayoutInstructionResponse>;
|
|
6017
|
-
/**
|
|
6018
|
-
* Get Recipient
|
|
6019
|
-
* @param {string} recipientAccountId The institution id
|
|
6020
|
-
* @param {*} [options] Override http request option.
|
|
6021
|
-
* @throws {RequiredError}
|
|
6022
|
-
* @memberof CustomerApiInterface
|
|
6023
|
-
*/
|
|
6024
|
-
getRecipient(recipientAccountId: string, options?: AxiosRequestConfig): AxiosPromise<RecipientResponse>;
|
|
6025
|
-
/**
|
|
6026
|
-
* Get Sender
|
|
6027
|
-
* @param {string} senderId The sender id
|
|
6028
|
-
* @param {*} [options] Override http request option.
|
|
6029
|
-
* @throws {RequiredError}
|
|
6030
|
-
* @memberof CustomerApiInterface
|
|
6031
|
-
*/
|
|
6032
|
-
getSender(senderId: string, options?: AxiosRequestConfig): AxiosPromise<SenderResponse>;
|
|
6033
|
-
/**
|
|
6034
|
-
* Get Sender Accounts associated with a senderId
|
|
6035
|
-
* @param {string} senderId The sender id
|
|
6036
|
-
* @param {*} [options] Override http request option.
|
|
6037
|
-
* @throws {RequiredError}
|
|
6038
|
-
* @memberof CustomerApiInterface
|
|
6039
|
-
*/
|
|
6040
|
-
getSenderAccounts(senderId: string, options?: AxiosRequestConfig): AxiosPromise<SenderAccountsResponse>;
|
|
6041
5449
|
/**
|
|
6042
5450
|
* Get a list of institutions
|
|
6043
5451
|
* @param {string} [country] (Deprecated) The country the institution belongs to
|
|
@@ -6124,46 +5532,6 @@ export declare class CustomerApi extends BaseAPI implements CustomerApiInterface
|
|
|
6124
5532
|
* @memberof CustomerApi
|
|
6125
5533
|
*/
|
|
6126
5534
|
createPayoutInstruction(createPayoutInstructionRequest: CreatePayoutInstructionRequest, idempotencyKey?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PayoutInstructionResponse>>;
|
|
6127
|
-
/**
|
|
6128
|
-
* Create Recipients
|
|
6129
|
-
* @param {CreateRecipientRequest} createRecipientRequest request body for creating recipient
|
|
6130
|
-
* @param {*} [options] Override http request option.
|
|
6131
|
-
* @throws {RequiredError}
|
|
6132
|
-
* @memberof CustomerApi
|
|
6133
|
-
*/
|
|
6134
|
-
createRecipient(createRecipientRequest: CreateRecipientRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<RecipientResponse>>;
|
|
6135
|
-
/**
|
|
6136
|
-
* Create Sender
|
|
6137
|
-
* @param {CreateSenderRequest} createSenderRequest request body for creating sender
|
|
6138
|
-
* @param {*} [options] Override http request option.
|
|
6139
|
-
* @throws {RequiredError}
|
|
6140
|
-
* @memberof CustomerApi
|
|
6141
|
-
*/
|
|
6142
|
-
createSender(createSenderRequest: CreateSenderRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SenderResponse>>;
|
|
6143
|
-
/**
|
|
6144
|
-
* Create Sender Account
|
|
6145
|
-
* @param {CreateSenderAccountRequest} createSenderAccountRequest request body for creating senderAccount
|
|
6146
|
-
* @param {*} [options] Override http request option.
|
|
6147
|
-
* @throws {RequiredError}
|
|
6148
|
-
* @memberof CustomerApi
|
|
6149
|
-
*/
|
|
6150
|
-
createSenderAccount(createSenderAccountRequest: CreateSenderAccountRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SenderAccountResponse>>;
|
|
6151
|
-
/**
|
|
6152
|
-
* Delete Recipient
|
|
6153
|
-
* @param {string} recipientAccountId The institution id
|
|
6154
|
-
* @param {*} [options] Override http request option.
|
|
6155
|
-
* @throws {RequiredError}
|
|
6156
|
-
* @memberof CustomerApi
|
|
6157
|
-
*/
|
|
6158
|
-
deleteRecipient(recipientAccountId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void>>;
|
|
6159
|
-
/**
|
|
6160
|
-
* Delete Sender Account
|
|
6161
|
-
* @param {string} senderAccountId The sender account id
|
|
6162
|
-
* @param {*} [options] Override http request option.
|
|
6163
|
-
* @throws {RequiredError}
|
|
6164
|
-
* @memberof CustomerApi
|
|
6165
|
-
*/
|
|
6166
|
-
deleteSenderAccount(senderAccountId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void>>;
|
|
6167
5535
|
/**
|
|
6168
5536
|
* generate a link token that can be used to create link
|
|
6169
5537
|
* @param {LinkTokenRequest} linkTokenRequest token request
|
|
@@ -6243,30 +5611,6 @@ export declare class CustomerApi extends BaseAPI implements CustomerApiInterface
|
|
|
6243
5611
|
* @memberof CustomerApi
|
|
6244
5612
|
*/
|
|
6245
5613
|
getPayoutInstruction(payoutInstructionId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PayoutInstructionResponse>>;
|
|
6246
|
-
/**
|
|
6247
|
-
* Get Recipient
|
|
6248
|
-
* @param {string} recipientAccountId The institution id
|
|
6249
|
-
* @param {*} [options] Override http request option.
|
|
6250
|
-
* @throws {RequiredError}
|
|
6251
|
-
* @memberof CustomerApi
|
|
6252
|
-
*/
|
|
6253
|
-
getRecipient(recipientAccountId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<RecipientResponse>>;
|
|
6254
|
-
/**
|
|
6255
|
-
* Get Sender
|
|
6256
|
-
* @param {string} senderId The sender id
|
|
6257
|
-
* @param {*} [options] Override http request option.
|
|
6258
|
-
* @throws {RequiredError}
|
|
6259
|
-
* @memberof CustomerApi
|
|
6260
|
-
*/
|
|
6261
|
-
getSender(senderId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SenderResponse>>;
|
|
6262
|
-
/**
|
|
6263
|
-
* Get Sender Accounts associated with a senderId
|
|
6264
|
-
* @param {string} senderId The sender id
|
|
6265
|
-
* @param {*} [options] Override http request option.
|
|
6266
|
-
* @throws {RequiredError}
|
|
6267
|
-
* @memberof CustomerApi
|
|
6268
|
-
*/
|
|
6269
|
-
getSenderAccounts(senderId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SenderAccountsResponse>>;
|
|
6270
5614
|
/**
|
|
6271
5615
|
* Get a list of institutions
|
|
6272
5616
|
* @param {string} [country] (Deprecated) The country the institution belongs to
|