using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// PaymentInformation Data Structure. /// [Serializable] public class PaymentInformation : AopObject { /// /// 处理行为,默认为PAY,也可以是FREEZE等等 /// [XmlElement("action")] public string Action { get; set; } /// /// 支付的金额,比如{"FAMILY_POINT":2000}代表支付2000家庭积分,如果是现金单位元 /// [XmlElement("amount")] public PriceInformation Amount { get; set; } /// /// 每个订单下面的支付请求号唯一即可,如果只是一次支付,建议可以直接用out_biz_no作为支付请求号 /// [XmlElement("request_no")] public string RequestNo { get; set; } } }