OpenuidGetRequest.cs 799 B

1234567891011121314151617181920212223242526272829303132333435
  1. using System;
  2. using System.Collections.Generic;
  3. using Top.Api.Util;
  4. namespace Top.Api.Request
  5. {
  6. /// <summary>
  7. /// TOP API: taobao.openuid.get
  8. /// </summary>
  9. public class OpenuidGetRequest : BaseTopRequest<Top.Api.Response.OpenuidGetResponse>
  10. {
  11. #region ITopRequest Members
  12. public override string GetApiName()
  13. {
  14. return "taobao.openuid.get";
  15. }
  16. public override IDictionary<string, string> GetParameters()
  17. {
  18. TopDictionary parameters = new TopDictionary();
  19. if (this.otherParams != null)
  20. {
  21. parameters.AddAll(this.otherParams);
  22. }
  23. return parameters;
  24. }
  25. public override void Validate()
  26. {
  27. }
  28. #endregion
  29. }
  30. }