TaobaoAppipGetResponse.cs 400 B

123456789101112131415161718192021222324
  1. using System.Collections.Generic;
  2. using System.Text.Json.Serialization;
  3. using Topsdk.Util;
  4. namespace Topsdk.Top.Ability304.Response;
  5. public class TaobaoAppipGetResponse : AbstractTopApiResponse
  6. {
  7. /*
  8. ISV发起请求服务器IP
  9. */
  10. private string? ip;
  11. [JsonPropertyName("ip")]
  12. public string? Ip
  13. {
  14. get => ip;
  15. set => this.ip = value;
  16. }
  17. }