@@ -199,4 +199,76 @@ WxChannelBaseResponse addComplaintEvidence(String complaintId, String content, L
199199 * @throws WxErrorException 异常
200200 */
201201 WxChannelBaseResponse merchantUpdateAfterSale (AfterSaleMerchantUpdateParam param ) throws WxErrorException ;
202+
203+ /**
204+ * 获取保障单列表。
205+ * 文档地址:https://developers.weixin.qq.com/doc/channels/API/channels-shop-aftersale/guarantee/api_searchguaranteeorder
206+ *
207+ * @param param 查询参数
208+ * @return 保障单列表
209+ * @throws WxErrorException 异常
210+ */
211+ default GuaranteeOrderListResponse listGuaranteeOrder (GuaranteeOrderListParam param ) throws WxErrorException {
212+ throw new UnsupportedOperationException ();
213+ }
214+
215+ /**
216+ * 获取保障单详情。
217+ * 文档地址:https://developers.weixin.qq.com/doc/channels/API/channels-shop-aftersale/guarantee/api_getguaranteeorder
218+ *
219+ * @param guaranteeOrderId 保障单号
220+ * @return 保障单详情
221+ * @throws WxErrorException 异常
222+ */
223+ default GuaranteeOrderInfoResponse getGuaranteeOrder (String guaranteeOrderId ) throws WxErrorException {
224+ throw new UnsupportedOperationException ();
225+ }
226+
227+ /**
228+ * 同意保障单申请。
229+ * 文档地址:https://developers.weixin.qq.com/doc/channels/API/channels-shop-aftersale/guarantee/api_merchantacceptguarantee
230+ *
231+ * @param guaranteeOrderId 保障单号
232+ * @return 响应结果
233+ * @throws WxErrorException 异常
234+ */
235+ default WxChannelBaseResponse acceptGuarantee (String guaranteeOrderId ) throws WxErrorException {
236+ throw new UnsupportedOperationException ();
237+ }
238+
239+ /**
240+ * 商家协商保障单。
241+ * 文档地址:https://developers.weixin.qq.com/doc/channels/API/channels-shop-aftersale/guarantee/api_merchantmodifyguarantee
242+ *
243+ * @param request 协商参数
244+ * @return 响应结果
245+ * @throws WxErrorException 异常
246+ */
247+ default WxChannelBaseResponse modifyGuarantee (GuaranteeModifyRequest request ) throws WxErrorException {
248+ throw new UnsupportedOperationException ();
249+ }
250+
251+ /**
252+ * 商家举证保障单。
253+ * 文档地址:https://developers.weixin.qq.com/doc/channels/API/channels-shop-aftersale/guarantee/api_merchantproofguarantee
254+ *
255+ * @param request 举证参数
256+ * @return 响应结果
257+ * @throws WxErrorException 异常
258+ */
259+ default WxChannelBaseResponse proofGuarantee (GuaranteeProofRequest request ) throws WxErrorException {
260+ throw new UnsupportedOperationException ();
261+ }
262+
263+ /**
264+ * 拒绝保障单申请。
265+ * 文档地址:https://developers.weixin.qq.com/doc/channels/API/channels-shop-aftersale/guarantee/api_merchantrefuseguarantee
266+ *
267+ * @param request 拒绝参数
268+ * @return 响应结果
269+ * @throws WxErrorException 异常
270+ */
271+ default WxChannelBaseResponse refuseGuarantee (GuaranteeRefuseRequest request ) throws WxErrorException {
272+ throw new UnsupportedOperationException ();
273+ }
202274}
0 commit comments