TaobaoTbkSpreadGetTbkSpread.cs 759 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. using System.Text.Json.Serialization;
  2. using System.Collections.Generic;
  3. using Topsdk.Util;
  4. namespace Topsdk.Top.Ability376.Domain;
  5. public class TaobaoTbkSpreadGetTbkSpread
  6. {
  7. /*
  8. 传播形式, 目前只支持短链接
  9. */
  10. private string? content;
  11. /*
  12. 调用错误信息;由于是批量接口,请重点关注每条请求返回的结果,如果非OK,则说明该结果对应的content不正常,请酌情处理;
  13. */
  14. private string? errMsg;
  15. [JsonPropertyName("content")]
  16. public string? Content
  17. {
  18. get => content;
  19. set => this.content = value;
  20. }
  21. [JsonPropertyName("err_msg")]
  22. public string? ErrMsg
  23. {
  24. get => errMsg;
  25. set => this.errMsg = value;
  26. }
  27. }