You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

54 lines
1.6 KiB
C#

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>
/// AlipayFundAuthOrderUnfreezeResponse.
/// </summary>
public class AlipayFundAuthOrderUnfreezeResponse : AopResponse
{
/// <summary>
/// 本次操作解冻的金额,单位为:元(人民币),精确到小数点后两位,取值范围:[0.01,100000000.00]
/// </summary>
[XmlElement("amount")]
public string Amount { get; set; }
/// <summary>
/// 支付宝资金授权订单号
/// </summary>
[XmlElement("auth_no")]
public string AuthNo { 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>
/// 资金操作流水的状态 目前支持: INIT初始 SUCCESS成功 CLOSED关闭
/// </summary>
[XmlElement("status")]
public string Status { get; set; }
}
}