1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| using Newtonsoft.Json;
| using System.ComponentModel.DataAnnotations;
| using Tea;
| using ZeroD.Util;
|
| namespace LifePayment.Domain
| {
| public class UserAgreementPageSignResponse: TeaModel
| {
| /// <summary>
| /// 协议产品码,商户和支付宝签约时确定,不同业务场景对应不同的签约产品码。
| /// </summary>
| [NameInMap("body")]
| public string Body
| {
| get;
| set;
| }
|
| }
| }
|
|