node-easywechat
Version:
EasyWechat SDK for Node.js (NOT OFFICIAL)
36 lines (35 loc) • 667 B
JavaScript
class MerchantInterface {
/**
* 获取merchant_id
* @returns
*/
getMerchantId() { return null; }
/**
* 获取证书私钥
*/
getPrivateKey() { return null; }
/**
* 获取secret_key
* @returns
*/
getSecretKey() { return null; }
/**
* 获取secret_key(V2版本)
* @returns
*/
getV2SecretKey() { return null; }
/**
* 获取证书
* @returns
*/
getCertificate() { return null; }
/**
* 获取平台证书
* @param serial
* @returns
*/
getPlatformCert(serial) { return null; }
}
;
module.exports = MerchantInterface;
;