using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayOverseasTuitionSchoolcreditConfirmModel Data Structure. /// [Serializable] public class AlipayOverseasTuitionSchoolcreditConfirmModel : AopObject { /// /// 支付内部交易流水号 /// [XmlElement("alipay_payment_id")] public string AlipayPaymentId { get; set; } /// /// 汇款入账金额 /// [XmlElement("confirm_amount")] public Money ConfirmAmount { get; set; } /// /// 汇款入账结果 /// [XmlElement("confirm_result")] public TuitionISVResult ConfirmResult { get; set; } /// /// 汇款入账时间 /// [XmlElement("confirm_time")] public string ConfirmTime { get; set; } /// /// ISV内部账单号 /// [XmlElement("isv_payment_id")] public string IsvPaymentId { get; set; } /// /// ISV在开放平台入驻签约的PID /// [XmlElement("isv_pid")] public string IsvPid { get; set; } /// /// 业务透传保留字段,json map格式 /// [XmlElement("pass_through_info")] public string PassThroughInfo { get; set; } /// /// 学校在开放平台入驻签约的PID /// [XmlElement("school_pid")] public string SchoolPid { get; set; } } }