TaobaoTbkTpwdCreateMapData.cs 1013 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. using System.Text.Json.Serialization;
  2. using System.Collections.Generic;
  3. using Topsdk.Util;
  4. namespace Topsdk.Top.Ability375.Domain;
  5. public class TaobaoTbkTpwdCreateMapData
  6. {
  7. /*
  8. 非苹果ios14以上版本的设备(即其他ios版本、Android系统等),可以用此淘口令正常在复制到手淘打开
  9. */
  10. private string? passwordSimple;
  11. /*
  12. 针对苹果ios14及以上版本的苹果设备,手淘将按照示例值信息格式读取淘口令(需包含:数字+羊角符+url,识别规则可能根据ios情况变更)。如需更改淘口令内文案、url等内容,请务必先验证更改后的淘口令在手淘可被识别打开!
  13. */
  14. private string? model;
  15. [JsonPropertyName("password_simple")]
  16. public string? PasswordSimple
  17. {
  18. get => passwordSimple;
  19. set => this.passwordSimple = value;
  20. }
  21. [JsonPropertyName("model")]
  22. public string? Model
  23. {
  24. get => model;
  25. set => this.model = value;
  26. }
  27. }