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;
        }

    }
}