|
@@ -273,6 +273,19 @@ export class SunPayAdapter implements ChannelAdapter {
|
|
async getBeneficiaryForId(id: string): Promise<void> {
|
|
async getBeneficiaryForId(id: string): Promise<void> {
|
|
return await this.request('GET', '/Fiat/Beneficiary/' + id);
|
|
return await this.request('GET', '/Fiat/Beneficiary/' + id);
|
|
}
|
|
}
|
|
|
|
+ /**
|
|
|
|
+ * 获取受益人
|
|
|
|
+ */
|
|
|
|
+ async getCustomerForId(id: string): Promise<void> {
|
|
|
|
+ return await this.request('GET', '/Fiat/Customer/' + id);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 获取受益人列表
|
|
|
|
+ */
|
|
|
|
+ async getBeneficiaryList(data: any): Promise<void> {
|
|
|
|
+ return await this.request('GET', '/Fiat/Beneficiary', data);
|
|
|
|
+ }
|
|
|
|
|
|
/**
|
|
/**
|
|
* 获取账户钱包币种余额信息
|
|
* 获取账户钱包币种余额信息
|