zhengyuxuan
2025-03-31 d7399b083de823860a56b68c79f8e36603fb4ea3
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;
        }
 
    }
}