using System; using System.Collections.Generic; using Jd.Api.Response; using Jd.Api.Util; namespace Jd.Api.Request { public class SellerPromotionActivitymodeAddRequest : JdRequestBase { public Nullable promoId {get; set;} public Nullable numBound {get; set;} public Nullable freqBound {get; set;} public Nullable perMaxNum {get; set;} public Nullable perMinNum {get; set;} public override string ApiName { get{return "jingdong.seller.promotion.activitymode.add";} } protected override void PrepareParam(IDictionary parameters) { parameters.Add("promo_id", this. promoId ); parameters.Add("num_bound", this. numBound ); parameters.Add("freq_bound", this. freqBound ); parameters.Add("per_max_num", this. perMaxNum ); parameters.Add("per_min_num", this. perMinNum ); } } }