using System; using System.Collections.Generic; using Jd.Api.Response; using Jd.Api.Util; namespace Jd.Api.Request { public class SellerPromotionCheckRequest : JdRequestBase { public Nullable promoId {get; set;} public Nullable status {get; set;} public override string ApiName { get{return "jingdong.seller.promotion.check";} } protected override void PrepareParam(IDictionary parameters) { parameters.Add("promo_id", this. promoId ); parameters.Add("status", this. status ); } } }