84 lines
3.0 KiB
C#
84 lines
3.0 KiB
C#
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; }
|
||
}
|
||
}
|