using System; using System.Collections.Generic; using Top.Api.Util; namespace Top.Api.Request { /// /// TOP API: taobao.huanlang.test.service.combine /// public class HuanlangTestServiceCombineRequest : BaseTopRequest { /// /// 12312 /// public string Appkey { get; set; } #region ITopRequest Members public override string GetApiName() { return "taobao.huanlang.test.service.combine"; } public override IDictionary GetParameters() { TopDictionary parameters = new TopDictionary(); parameters.Add("appkey", this.Appkey); if (this.otherParams != null) { parameters.AddAll(this.otherParams); } return parameters; } public override void Validate() { RequestValidator.ValidateRequired("appkey", this.Appkey); } #endregion } }