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