using AlibabaSDK.Api; using AlibabaSDK.Response; using System; using System.Collections.Generic; using System.Text; namespace AlibabaSDK.Request { public class FenXiaoOutproductRelationDeleteRequest : IAlibabaApiRequest { public object ErrorObj() { return new FenXiaoOutproductRelationDeleteResponse(); } public string GetApiName() { return "/param2/1/com.alibaba.fenxiao/alibaba.fenxiao.buyer.outproduct.relation.delete"; } public Dictionary GetParameters() { Dictionary dic = new Dictionary(); dic.Add("channel", channel); dic.Add("offerId", offerId); dic.Add("outItemCode", outItemCode); dic.Add("outShopCode", outShopCode); return dic; } /// /// 淘宝-thyny,天猫-tm,淘特-taote,阿里巴巴C2M-c2m,京东-jingdong,拼多多-pinduoduo,微信-weixin,跨境-kuajing,快手-kuaishou,有赞-youzan,抖音-douyin,寺库-siku,美团团好货-meituan,小红书-xiaohongshu,当当-dangdang,苏宁-suning,大V店-davdian,行云-xingyun,蜜芽-miya,菠萝派商城-boluo,快团团-kuaituantuan,其他-other /// public string channel { get; set; } /// /// 上游1688商品id /// public long offerId { get; set; } /// /// 下游外部商品码 /// public string outItemCode { get; set; } /// /// 下游店铺code /// public string outShopCode { get; set; } public void Validate() { } } }