chengkun
2025-09-09 1ff9e27b020822168a95edd83be567e7153837f3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// This file is auto-generated, don't edit it. Thanks.
 
using System;
using System.Collections.Generic;
using System.IO;
 
using Tea;
 
namespace Alipay.EasySDK.Payment.Common.Models
{
    public class RefundRoyaltyResult : TeaModel {
        [NameInMap("refund_amount")]
        [Validation(Required=true)]
        public string RefundAmount { get; set; }
 
        [NameInMap("royalty_type")]
        [Validation(Required=true)]
        public string RoyaltyType { get; set; }
 
        [NameInMap("result_code")]
        [Validation(Required=true)]
        public string ResultCode { get; set; }
 
        [NameInMap("trans_out")]
        [Validation(Required=true)]
        public string TransOut { get; set; }
 
        [NameInMap("trans_out_email")]
        [Validation(Required=true)]
        public string TransOutEmail { get; set; }
 
        [NameInMap("trans_in")]
        [Validation(Required=true)]
        public string TransIn { get; set; }
 
        [NameInMap("trans_in_email")]
        [Validation(Required=true)]
        public string TransInEmail { get; set; }
 
    }
 
}