@antchain/ato 1.14.40 → 1.14.41
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/client.d.ts +1 -0
- package/dist/client.js +3 -1
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +7 -1
package/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -3535,6 +3535,10 @@ export class CancelFundPlanRequest extends $tea.Model {
|
|
|
3535
3535
|
operation?: string;
|
|
3536
3536
|
// 赎回金额,单位为分,取消并赎回时必填
|
|
3537
3537
|
redeemAmount?: number;
|
|
3538
|
+
// 赎回类型,为空默认为 TRANSFER
|
|
3539
|
+
// 转账代偿:TRANSFER
|
|
3540
|
+
// 代扣代偿:WITHHOLD
|
|
3541
|
+
redeemType?: string;
|
|
3538
3542
|
static names(): { [key: string]: string } {
|
|
3539
3543
|
return {
|
|
3540
3544
|
authToken: 'auth_token',
|
|
@@ -3545,6 +3549,7 @@ export class CancelFundPlanRequest extends $tea.Model {
|
|
|
3545
3549
|
fundId: 'fund_id',
|
|
3546
3550
|
operation: 'operation',
|
|
3547
3551
|
redeemAmount: 'redeem_amount',
|
|
3552
|
+
redeemType: 'redeem_type',
|
|
3548
3553
|
};
|
|
3549
3554
|
}
|
|
3550
3555
|
|
|
@@ -3558,6 +3563,7 @@ export class CancelFundPlanRequest extends $tea.Model {
|
|
|
3558
3563
|
fundId: 'string',
|
|
3559
3564
|
operation: 'string',
|
|
3560
3565
|
redeemAmount: 'number',
|
|
3566
|
+
redeemType: 'string',
|
|
3561
3567
|
};
|
|
3562
3568
|
}
|
|
3563
3569
|
|
|
@@ -16799,7 +16805,7 @@ export default class Client {
|
|
|
16799
16805
|
req_msg_id: AntchainUtil.getNonce(),
|
|
16800
16806
|
access_key: this._accessKeyId,
|
|
16801
16807
|
base_sdk_version: "TeaSDK-2.0",
|
|
16802
|
-
sdk_version: "1.14.
|
|
16808
|
+
sdk_version: "1.14.41",
|
|
16803
16809
|
_prod_code: "ATO",
|
|
16804
16810
|
_prod_channel: "undefined",
|
|
16805
16811
|
};
|