using System; using System.Collections.Generic; using Jd.Api.Response; using Jd.Api.Util; namespace Jd.Api.Request { public class SellerCouponReadGetCouponCountRequest : JdRequestBase { public string ip {get; set;} public string port {get; set;} public Nullable couponId {get; set;} public Nullable type {get; set;} public Nullable grantType {get; set;} public Nullable bindType {get; set;} public Nullable grantWay {get; set;} public string name {get; set;} public string createMonth {get; set;} public Nullable creatorType {get; set;} public Nullable closed {get; set;} public override string ApiName { get{return "jingdong.seller.coupon.read.getCouponCount";} } protected override void PrepareParam(IDictionary parameters) { parameters.Add("ip", this. ip ); parameters.Add("port", this. port ); parameters.Add("couponId", this. couponId ); parameters.Add("type", this. type ); parameters.Add("grantType", this. grantType ); parameters.Add("bindType", this. bindType ); parameters.Add("grantWay", this. grantWay ); parameters.Add("name", this. name ); parameters.Add("createMonth", this. createMonth ); parameters.Add("creatorType", this. creatorType ); parameters.Add("closed", this. closed ); } } }