using System;
using System.Collections.Generic;
using Top.Api.Util;
namespace Top.Api.Request
{
///
/// TOP API: taobao.openuid.get.bymixnick
///
public class OpenuidGetBymixnickRequest : BaseTopRequest
{
///
/// 无线类应用获取到的混淆的nick
///
public string MixNick { get; set; }
#region ITopRequest Members
public override string GetApiName()
{
return "taobao.openuid.get.bymixnick";
}
public override IDictionary GetParameters()
{
TopDictionary parameters = new TopDictionary();
parameters.Add("mix_nick", this.MixNick);
if (this.otherParams != null)
{
parameters.AddAll(this.otherParams);
}
return parameters;
}
public override void Validate()
{
RequestValidator.ValidateRequired("mix_nick", this.MixNick);
}
#endregion
}
}