package com.yanzuoguang.wxxcx.openapimanage.service; import com.yanzuoguang.wxxcx.base.WxXcxAccessToken; import com.yanzuoguang.wxxcx.openapimanage.WxXcxOpenApiManageClearQuotaReq; import com.yanzuoguang.wxxcx.openapimanage.WxXcxOpenApiManageClearQuotaRes; /** * 重置 API 调用次数 接口 * * @author 李贤军 */ public interface WxXcxOpenApiManageClearQuotaService { /** * 重置 API 调用次数 * * @param accessToken accessToken * @param req 重置 API 调用次数 入参 * @return 重置 API 调用次数 返回 */ WxXcxOpenApiManageClearQuotaRes getClearQuota(WxXcxAccessToken accessToken, WxXcxOpenApiManageClearQuotaReq req); }