NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipaySocialAntforestTreeSy...

37 lines
1.3 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipaySocialAntforestTreeSyncModel Data Structure.
/// </summary>
[Serializable]
public class AlipaySocialAntforestTreeSyncModel : AopObject
{
/// <summary>
/// 待同步的证书的来源账户id
/// </summary>
[XmlElement("account_id")]
public string AccountId { get; set; }
/// <summary>
/// 待同步时的证书id有之前调用申请兑换树种成功时返回的证书id
/// </summary>
[XmlElement("certificate_id")]
public string CertificateId { get; set; }
/// <summary>
/// JSON字符串历史数据同步时accountName、type、participant必填其他字段选填。其中accountName为账号名称例如钉钉固定传“钉钉”type为合种类型班级或公司公益林class/corpcooperation为合种名称或班级名称participant为兑换证书时合种的人数非合种实时人数
/// </summary>
[XmlElement("ext_info")]
public string ExtInfo { get; set; }
/// <summary>
/// 待同步证书的所属用户蚂蚁统一会员ID
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
}
}