using System; using System.Collections.Generic; using Jd.Api.Response; using Jd.Api.Util; namespace Jd.Api.Request { public class DspAdkcunitDmpGetcrowdlistRequest : JdRequestBase { public string crowdName {get; set;} public Nullable pageIndex {get; set;} public Nullable pageSize {get; set;} public override string ApiName { get{return "jingdong.dsp.adkcunit.dmp.getcrowdlist";} } protected override void PrepareParam(IDictionary parameters) { parameters.Add("crowdName", this. crowdName ); parameters.Add("pageIndex", this. pageIndex ); parameters.Add("pageSize", this. pageSize ); } } }