/* * @Author: zcxb chen13157379235@outlook.com * @Date: 2022-09-13 10:41:28 * @LastEditors: zcxb chen13157379235@outlook.com * @LastEditTime: 2022-11-13 20:56:45 * @FilePath: \easy-front-core-sdk\packages\jos\src\api\AlphaAPI.ts * @Description: * * Copyright (c) 2022 by zcxb chen13157379235@outlook.com, All Rights Reserved. */ import { ApiMethod } from '../Enums' import { JosCore, RequestOptions } from '../JosCore' export class AlphaAPI { /** * 获取商家已签约承运商 * @param josCore * @param accessToken * @link https://jos.jd.com/apilist?apiGroupId=191&apiId=14361&apiName=jingdong.fce.alpha.getVenderCarrier */ public static async JingdongFceAlphaGetVenderCarrier( josCore: JosCore, accessToken: string, options?: RequestOptions ): Promise { return await josCore.request(ApiMethod.JINGDONG_FCE_ALPHA_GETVENDERCARRIER, {}, accessToken, options) } }