using AlibabaSDK.Api; using AlibabaSDK.Response; using System; using System.Collections.Generic; using System.Text; namespace AlibabaSDK.Request { public class AlibabaCategoryGetRequest : IAlibabaApiRequest { public object ErrorObj() { return new AlibabaCategoryGetResponse(); } public string GetApiName() { return "/param2/1/com.alibaba.product/alibaba.category.get"; } public Dictionary GetParameters() { Dictionary dic = new Dictionary(); dic.Add("categoryID", categoryID); return dic; } public long categoryID { get; set; } public void Validate() { } } }