export declare namespace Jos { /** * jingdong.jos.voucher.info.get 请求参数 * * @link https://jos.jd.com/apilist?apiGroupId=243&apiId=14829&apiName=jingdong.jos.voucher.info.get */ class GetVoucherInfoRequest { /** * jos授权accessToken,与公共请求参数access_token相同,通过公共参数传入;自定义用户(自有账号)无需填写 */ access_token?: string; /** * 自定义用户ID,与注册自有账号时的customer_user_id一致;jos授权用户无需填写 */ customer_user_id?: number; } /** * jingdong.jos.master.key.get 请求参数 * * @link https://jos.jd.com/apilist?apiGroupId=243&apiId=15668&apiName=jingdong.jos.master.key.get */ class GetMasterKeyRequest { /** * 使用凭证key对data进行HmacSHA256签名结果 */ sig?: string; /** * sdk版本 */ sdk_ver?: number; /** * 请求时间的时间戳 */ ts?: number; /** * 凭证id,通过jingdong.jos.voucher.info.get获取 */ tid?: string; } /** * jingdong.jos.secret.api.report.get 请求参数 * * @link https://jos.jd.com/apilist?apiGroupId=243&apiId=15673&apiName=jingdong.jos.secret.api.report.get */ class ReportSecretApiRequest { /** * jos授权accessToken,与公共请求参数access_token相同,可以通过公共参数传入;自定义用户(自有账号)无需填写 */ access_token?: string; /** * 随机数 */ businessId?: string; /** * 网关来源url */ text?: string; /** * attributeJson串 */ attribute?: string; /** * 自定义用户ID,与注册自有账号时的customer_user_id一致;jos授权用户无需填写 */ customer_user_id?: number; /** * 网关请求地址 */ server_url?: string; } }