using System;
using System.Collections.Generic;
using Top.Api.Util;
namespace Top.Api.Request
{
///
/// TOP API: taobao.baichuan.openaccount.registercode.check
///
public class BaichuanOpenaccountRegistercodeCheckRequest : BaseTopRequest
{
///
/// name
///
public string Name { get; set; }
#region ITopRequest Members
public override string GetApiName()
{
return "taobao.baichuan.openaccount.registercode.check";
}
public override IDictionary 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
}
}