using AlibabaSDK.Api; using AlibabaSDK.Response; using System; using System.Collections.Generic; using System.Text; namespace AlibabaSDK.Request { public class FenXiaoProductInfoGetRequest : IAlibabaApiRequest { public object ErrorObj() { return new FenXiaoProductInfoGetResponse(); } public string GetApiName() { return "/param2/1/com.alibaba.fenxiao/alibaba.fenxiao.productInfo.get"; } public Dictionary GetParameters() { Dictionary dic = new Dictionary(); dic.Add("offerId", offerId); return dic; } /// /// 1688商品ID /// public long offerId { get; set; } public void Validate() { } } }