| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- using System;
- using System.Collections.Generic;
- using Top.Api.Util;
- namespace Top.Api.Request
- {
- /// <summary>
- /// TOP API: taobao.jushita.jms.topics.get
- /// </summary>
- public class JushitaJmsTopicsGetRequest : BaseTopRequest<Top.Api.Response.JushitaJmsTopicsGetResponse>
- {
- /// <summary>
- /// 卖家nick
- /// </summary>
- public string Nick { get; set; }
- #region ITopRequest Members
- public override string GetApiName()
- {
- return "taobao.jushita.jms.topics.get";
- }
- public override IDictionary<string, string> GetParameters()
- {
- TopDictionary parameters = new TopDictionary();
- parameters.Add("nick", this.Nick);
- if (this.otherParams != null)
- {
- parameters.AddAll(this.otherParams);
- }
- return parameters;
- }
- public override void Validate()
- {
- RequestValidator.ValidateRequired("nick", this.Nick);
- }
- #endregion
- }
- }
|