TaobaoTbkDgTpwdRiskReportResponse.cs 502 B

12345678910111213141516171819202122232425
  1. using System.Collections.Generic;
  2. using System.Text.Json.Serialization;
  3. using Topsdk.Util;
  4. using Topsdk.Top.Defaultability.Domain;
  5. namespace Topsdk.Top.Defaultability.Response;
  6. public class TaobaoTbkDgTpwdRiskReportResponse : AbstractTopApiResponse
  7. {
  8. /*
  9. */
  10. private TaobaoTbkDgTpwdRiskReportResult? result;
  11. [JsonPropertyName("result")]
  12. public TaobaoTbkDgTpwdRiskReportResult? Result
  13. {
  14. get => result;
  15. set => this.result = value;
  16. }
  17. }