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