1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| // 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.App.Models
| {
| public class AlipayTradeAppPayResponse : TeaModel {
| /// <summary>
| /// 订单信息,字符串形式
| /// </summary>
| [NameInMap("body")]
| [Validation(Required=true)]
| public string Body { get; set; }
|
| }
|
| }
|
|