TaobaoTbkRelationRefundResponse.cs 515 B

12345678910111213141516171819202122232425
  1. using System.Collections.Generic;
  2. using System.Text.Json.Serialization;
  3. using Topsdk.Util;
  4. using Topsdk.Top.Ability414.Domain;
  5. namespace Topsdk.Top.Ability414.Response;
  6. public class TaobaoTbkRelationRefundResponse : AbstractTopApiResponse
  7. {
  8. /*
  9. 返回结果封装对象
  10. */
  11. private TaobaoTbkRelationRefundRpcResult? result;
  12. [JsonPropertyName("result")]
  13. public TaobaoTbkRelationRefundRpcResult? Result
  14. {
  15. get => result;
  16. set => this.result = value;
  17. }
  18. }