/** * @module pluginx_alipay */ var plugin = plugin || {}; /** * @class IAPAlipay */ plugin.IAPAlipay = { /** * @method configDeveloperInfo * @param {TIAPDeveloperInfo} */ configDeveloperInfo : function () {}, /** * @method getPluginName * @return A value converted from C/C++ "const char*" */ getPluginName : function () {}, /** * @method getPluginVersion * @return A value converted from C/C++ "const char*" */ getPluginVersion : function () {}, /** * @method init * @return A value converted from C/C++ "bool" */ init : function () {}, /** * @method payForProduct * @param {TProductInfo} */ payForProduct : function () {}, /** * @method getSDKVersion * @return A value converted from C/C++ "const char*" */ getSDKVersion : function () {}, /** * @method setDebugMode * @param {bool} */ setDebugMode : function () {}, };