using System; using System.Collections.Generic; using Jd.Api.Response; using Jd.Api.Util; namespace Jd.Api.Request { public class SellerPromotionV2SuspendRequest : JdRequestBase { public string ip {get; set;} public string port {get; set;} public string requestId {get; set;} public Nullable promoId {get; set;} public Nullable promoType {get; set;} public override string ApiName { get{return "jingdong.seller.promotion.v2.suspend";} } protected override void PrepareParam(IDictionary parameters) { parameters.Add("ip", this. ip ); parameters.Add("port", this. port ); parameters.Add("request_id", this. requestId ); parameters.Add("promo_id", this. promoId ); parameters.Add("promo_type", this. promoType ); } } }