using System; using System.Collections.Generic; using Jd.Api.Response; using Jd.Api.Util; namespace Jd.Api.Request { public class PopOrderNotPayOrderInfoRequest : JdRequestBase { public Nullable startDate {get; set;} public Nullable endDate {get; set;} public Nullable page {get; set;} public Nullable pageSize {get; set;} public override string ApiName { get{return "jingdong.pop.order.notPayOrderInfo";} } protected override void PrepareParam(IDictionary parameters) { parameters.Add("startDate", this. startDate ); parameters.Add("endDate", this. endDate ); parameters.Add("page", this. page ); parameters.Add("pageSize", this. pageSize ); } } }