| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- using System;
- using System.Collections.Generic;
- using Top.Api.Util;
- namespace Top.Api.Request
- {
- /// <summary>
- /// TOP API: taobao.baichuan.openaccount.registercode.send
- /// </summary>
- public class BaichuanOpenaccountRegistercodeSendRequest : BaseTopRequest<Top.Api.Response.BaichuanOpenaccountRegistercodeSendResponse>
- {
- /// <summary>
- /// name
- /// </summary>
- public string Name { get; set; }
- #region ITopRequest Members
- public override string GetApiName()
- {
- return "taobao.baichuan.openaccount.registercode.send";
- }
- public override IDictionary<string, string> GetParameters()
- {
- TopDictionary parameters = new TopDictionary();
- parameters.Add("name", this.Name);
- if (this.otherParams != null)
- {
- parameters.AddAll(this.otherParams);
- }
- return parameters;
- }
- public override void Validate()
- {
- }
- #endregion
- }
- }
|