using AlibabaSDK.Api;
|
using AlibabaSDK.Response;
|
using System;
|
using System.Collections.Generic;
|
using System.Text;
|
|
namespace AlibabaSDK.Request
|
{
|
//PFTProductDetailResponse
|
public class PFTProductDetailRequest : IAlibabaApiRequest<PFTProductDetailResponse>
|
{
|
public object ErrorObj()
|
{
|
throw new NotImplementedException();
|
}
|
|
public string GetApiName()
|
{
|
return "/param2/1/com.alibaba.fenxiao/alibaba.pifatuan.product.detail.list";
|
}
|
|
public Dictionary<string, object> GetParameters()
|
{
|
Dictionary<string, object> dic = new Dictionary<string, object>();
|
dic.Add("offerIds", offerIds);
|
return dic;
|
}
|
|
public List<string> offerIds { get; set; }
|
|
public void Validate()
|
{
|
throw new NotImplementedException();
|
}
|
}
|
}
|