using System; using System.Collections.Generic; using Top.Api.Util; namespace Top.Api.Request { /// /// TOP API: taobao.jushita.jdp.jduser.get /// public class JushitaJdpJduserGetRequest : BaseTopRequest { /// /// 分组 /// public Nullable GroupId { get; set; } #region ITopRequest Members public override string GetApiName() { return "taobao.jushita.jdp.jduser.get"; } public override IDictionary GetParameters() { TopDictionary parameters = new TopDictionary(); parameters.Add("group_id", this.GroupId); if (this.otherParams != null) { parameters.AddAll(this.otherParams); } return parameters; } public override void Validate() { } #endregion } }