using System; using System.Collections.Generic; using Jd.Api.Response; using Jd.Api.Util; namespace Jd.Api.Request { public class OmnicTraceGettracelistRequest : JdRequestBase { public string authKey {get; set;} public Nullable dateType {get; set;} public Nullable statusType {get; set;} public Nullable orderId {get; set;} public Nullable endDate {get; set;} public Nullable pageSize {get; set;} public Nullable currentPage {get; set;} public Nullable startDate {get; set;} public Nullable status {get; set;} public override string ApiName { get{return "jingdong.omnic.trace.gettracelist";} } protected override void PrepareParam(IDictionary parameters) { parameters.Add("authKey", this. authKey ); parameters.Add("dateType", this. dateType ); parameters.Add("statusType", this. statusType ); parameters.Add("orderId", this. orderId ); parameters.Add("endDate", this. endDate ); parameters.Add("pageSize", this. pageSize ); parameters.Add("currentPage", this. currentPage ); parameters.Add("startDate", this. startDate ); parameters.Add("status", this. status ); } } }