using System; using System.Collections.Generic; using Top.Api.Util; namespace Top.Api.Request { /// /// TOP API: taobao.topapi.performance.test /// public class TopapiPerformanceTestRequest : BaseTopRequest { /// /// 123 /// public string Commond { get; set; } /// /// 123 /// public string Factor { get; set; } /// /// 123 /// public Nullable Rt { get; set; } #region ITopRequest Members public override string GetApiName() { return "taobao.topapi.performance.test"; } public override IDictionary GetParameters() { TopDictionary parameters = new TopDictionary(); parameters.Add("commond", this.Commond); parameters.Add("factor", this.Factor); parameters.Add("rt", this.Rt); if (this.otherParams != null) { parameters.AddAll(this.otherParams); } return parameters; } public override void Validate() { } #endregion } }