using System; using System.Collections.Generic; using Top.Api.Util; namespace Top.Api.Request { /// /// TOP API: taobao.jushita.jdp.query.biz /// public class JushitaJdpQueryBizRequest : BaseTopRequest { /// /// 返回结果 /// public string BizResponse { get; set; } /// /// 查询密钥 /// public string QueryKey { get; set; } #region ITopRequest Members public override string GetApiName() { return "taobao.jushita.jdp.query.biz"; } public override IDictionary GetParameters() { TopDictionary parameters = new TopDictionary(); parameters.Add("biz_response", this.BizResponse); parameters.Add("query_key", this.QueryKey); if (this.otherParams != null) { parameters.AddAll(this.otherParams); } return parameters; } public override void Validate() { } #endregion } }