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