@liuhlightning/wx-pay
Version:
communicate to wx pay
14 lines • 380 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.closeTransaction = closeTransaction;
/**
* 关闭订单
*
* https://pay.weixin.qq.com/wiki/doc/apiv3/apis/chapter3_1_3.shtml
*/
function closeTransaction(id) {
return this.request({
url: `/v3/pay/transactions/out-trade-no/${id}/close`,
});
}
//# sourceMappingURL=close.js.map