using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// AlipayEcoContractMessageSendModel Data Structure. /// [Serializable] public class AlipayEcoContractMessageSendModel : AopObject { /// /// 调用批次号 /// [XmlElement("batch_no")] public string BatchNo { get; set; } /// /// 证件号 /// [XmlArray("cert_no")] [XmlArrayItem("string")] public List CertNo { get; set; } /// /// 证件类型 /// [XmlElement("cert_type")] public string CertType { get; set; } /// /// 流程Id /// [XmlElement("flow_id")] public string FlowId { get; set; } /// /// 供应商的appId /// [XmlElement("isv_app_id")] public string IsvAppId { get; set; } /// /// 消息模板ID /// [XmlElement("msg_template_id")] public string MsgTemplateId { get; set; } /// /// 签署平台的代码 /// [XmlElement("sign_platform_code")] public string SignPlatformCode { get; set; } /// /// 支付宝账号Id,数组关联多个支付宝账号 (如果未注册支付宝账号 则为空) /// [XmlArray("user_ids")] [XmlArrayItem("string")] public List UserIds { get; set; } } }