NewGaoKaoApi/PaymentSDK/AliPay/Domain/PaymentInformation.cs

31 lines
934 B
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>
/// PaymentInformation Data Structure.
/// </summary>
[Serializable]
public class PaymentInformation : AopObject
{
/// <summary>
/// 处理行为默认为PAY也可以是FREEZE等等
/// </summary>
[XmlElement("action")]
public string Action { get; set; }
/// <summary>
/// 支付的金额,比如{"FAMILY_POINT":2000}代表支付2000家庭积分如果是现金单位元
/// </summary>
[XmlElement("amount")]
public PriceInformation Amount { get; set; }
/// <summary>
/// 每个订单下面的支付请求号唯一即可如果只是一次支付建议可以直接用out_biz_no作为支付请求号
/// </summary>
[XmlElement("request_no")]
public string RequestNo { get; set; }
}
}