NewGaoKaoApi/PaymentSDK/AliPay/Response/AlipayFundAuthOrderAppFreez...

84 lines
3.0 KiB
C#
Raw 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.Response
{
/// <summary>
/// AlipayFundAuthOrderAppFreezeResponse.
/// </summary>
public class AlipayFundAuthOrderAppFreezeResponse : AopResponse
{
/// <summary>
/// 本次操作冻结的金额,单位为:元(人民币),精确到小数点后两位
/// </summary>
[XmlElement("amount")]
public string Amount { get; set; }
/// <summary>
/// 支付宝的资金授权订单号
/// </summary>
[XmlElement("auth_no")]
public string AuthNo { get; set; }
/// <summary>
/// 本次冻结操作中信用冻结金额,单位为:元(人民币),精确到小数点后两位
/// </summary>
[XmlElement("credit_amount")]
public string CreditAmount { get; set; }
/// <summary>
/// 本次冻结操作中自有资金冻结金额,单位为:元(人民币),精确到小数点后两位
/// </summary>
[XmlElement("fund_amount")]
public string FundAmount { get; set; }
/// <summary>
/// 资金授权成功时间 格式YYYY-MM-DD HH:MM:SS
/// </summary>
[XmlElement("gmt_trans")]
public string GmtTrans { get; set; }
/// <summary>
/// 支付宝的资金操作流水号
/// </summary>
[XmlElement("operation_id")]
public string OperationId { get; set; }
/// <summary>
/// 商户的授权资金订单号
/// </summary>
[XmlElement("out_order_no")]
public string OutOrderNo { get; set; }
/// <summary>
/// 商户本次资金操作的请求流水号
/// </summary>
[XmlElement("out_request_no")]
public string OutRequestNo { get; set; }
/// <summary>
/// 付款方支付宝用户号
/// </summary>
[XmlElement("payer_user_id")]
public string PayerUserId { get; set; }
/// <summary>
/// 预授权类型,目前支持 CREDIT_AUTH(信用预授权); 商户可根据该标识来判断该笔预授权的类型,当返回值为"CREDIT_AUTH"表明该笔预授权为信用预授权,没有真实冻结资金;当返回值为空或者不为"CREDIT_AUTH"则表明该笔预授权为普通资金预授权,会冻结用户资金。
/// </summary>
[XmlElement("pre_auth_type")]
public string PreAuthType { get; set; }
/// <summary>
/// 资金预授权明细的状态 目前支持: INIT初始 SUCCESS: 成功 CLOSED关闭
/// </summary>
[XmlElement("status")]
public string Status { get; set; }
/// <summary>
/// 标价币种, amount 对应的币种单位。支持澳元AUD, 新西兰元NZD, 台币TWD, 美元USD, 欧元EUR, 英镑GBP, 人民币CNY
/// </summary>
[XmlElement("trans_currency")]
public string TransCurrency { get; set; }
}
}