using AlibabaSDK.Api;
|
using AlibabaSDK.Response;
|
using System;
|
using System.Collections.Generic;
|
using System.Text;
|
|
namespace AlibabaSDK.Request
|
{
|
public class AlibabaLogisticsGetRequest : IAlibabaApiRequest<AlibabaLogisticsGetResponse>
|
{
|
public object ErrorObj()
|
{
|
return new AlibabaLogisticsGetResponse();
|
}
|
|
public string GetApiName()
|
{
|
return "/param2/1/com.alibaba.logistics/alibaba.logistics.OpQueryLogisticCompanyList.offline";
|
}
|
|
public Dictionary<string, object> GetParameters()
|
{
|
return new Dictionary<string, object>();
|
}
|
|
public void Validate()
|
{
|
// throw new NotImplementedException();
|
}
|
}
|
}
|