/* * @Author: zcxb chen13157379235@outlook.com * @Date: 2022-10-14 11:16:45 * @LastEditors: zcxb chen13157379235@outlook.com * @LastEditTime: 2022-10-27 17:49:54 * @FilePath: \easy-front-core-sdk\packages\jos\src\api\RefundAPI.ts * @Description: * * Copyright (c) 2022 by zcxb chen13157379235@outlook.com, All Rights Reserved. */ import { Pop } from '../entity/OrderDTO' import { ApiMethod } from '../Enums' import { JosCore, RequestOptions } from '../JosCore' export class RefundAPI { /** * 退款审核单列表查询 * @param josCore * @param apiParams {@link Pop.Afs.Soa.RefundApply.QueryPageListRequest} * @param accessToken * @link https://jos.jd.com/apilist?apiGroupId=71&apiId=13151&apiName=jingdong.pop.afs.soa.refundapply.queryPageList */ public static async JingdongPopAfsSoaRefundApplyQueryPageList( josCore: JosCore, apiParams: Pop.Afs.Soa.RefundApply.QueryPageListRequest, accessToken: string, options?: RequestOptions ): Promise { const response = await josCore.request( ApiMethod.JINGDONG_POP_AFS_SOA_REFUNDAPPLY_QUERYPAGELIST, apiParams, accessToken, options ) return response } }