| 12345678910111213141516171819202122232425 |
- using System.Collections.Generic;
- using System.Text.Json.Serialization;
- using Topsdk.Util;
- using Topsdk.Top.Ability414.Domain;
- namespace Topsdk.Top.Ability414.Response;
- public class TaobaoTbkRelationRefundResponse : AbstractTopApiResponse
- {
- /*
- 返回结果封装对象
- */
- private TaobaoTbkRelationRefundRpcResult? result;
- [JsonPropertyName("result")]
- public TaobaoTbkRelationRefundRpcResult? Result
- {
- get => result;
- set => this.result = value;
- }
- }
|