using System; using System.Collections.Generic; using Jd.Api.Response; using Jd.Api.Util; namespace Jd.Api.Request { public class BrandCouponGetCouponPageInfoRequest : JdRequestBase { public string couponName {get; set;} public Nullable pageSize {get; set;} public Nullable couponId {get; set;} public Nullable currentPage {get; set;} public Nullable status {get; set;} public override string ApiName { get{return "jingdong.brand.coupon.getCouponPageInfo";} } protected override void PrepareParam(IDictionary parameters) { parameters.Add("couponName", this. couponName ); parameters.Add("pageSize", this. pageSize ); parameters.Add("couponId", this. couponId ); parameters.Add("currentPage", this. currentPage ); parameters.Add("status", this. status ); } } }