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.

114 lines
3.8 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>
/// AlipayFundAuthOperationDetailQueryResponse.
/// </summary>
public class AlipayFundAuthOperationDetailQueryResponse : AopResponse
{
/// <summary>
/// 该笔资金操作流水opertion_id对应的操作金额单位为人民币
/// </summary>
[XmlElement("amount")]
public string Amount { get; set; }
/// <summary>
/// 支付宝资金授权订单号
/// </summary>
[XmlElement("auth_no")]
public string AuthNo { get; set; }
/// <summary>
/// 商户请求创建预授权订单时传入的扩展参数仅返回商户自定义的扩展信息merchantExt
/// </summary>
[XmlElement("extra_param")]
public string ExtraParam { get; set; }
/// <summary>
/// 资金授权单据操作流水创建时间, 格式YYYY-MM-DD HH:MM:SS
/// </summary>
[XmlElement("gmt_create")]
public string GmtCreate { 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>
/// 支付宝资金操作类型, 目前支持: FREEZE冻结 UNFREEZE解冻 PAY支付
/// </summary>
[XmlElement("operation_type")]
public string OperationType { get; set; }
/// <summary>
/// 业务订单的简单描述,如商品名称等
/// </summary>
[XmlElement("order_title")]
public string OrderTitle { 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>
/// 付款方支付宝账号Email或手机号仅作展示使用默认会加“*”号处理
/// </summary>
[XmlElement("payer_logon_id")]
public string PayerLogonId { get; set; }
/// <summary>
/// 付款方支付宝账号对应的支付宝唯一用户号以2088开头的16位纯数字组成
/// </summary>
[XmlElement("payer_user_id")]
public string PayerUserId { get; set; }
/// <summary>
/// 商户对本次操作的附言描述长度不超过100个字母或50个汉字
/// </summary>
[XmlElement("remark")]
public string Remark { get; set; }
/// <summary>
/// 订单总共剩余的冻结金额,单位为:元(人民币)
/// </summary>
[XmlElement("rest_amount")]
public string RestAmount { get; set; }
/// <summary>
/// 资金操作流水的状态, 目前支持: INIT初始 SUCCESS成功 CLOSED关闭
/// </summary>
[XmlElement("status")]
public string Status { get; set; }
/// <summary>
/// 订单累计的冻结金额,单位为:元(人民币)
/// </summary>
[XmlElement("total_freeze_amount")]
public string TotalFreezeAmount { get; set; }
/// <summary>
/// 订单累计用于支付的金额,单位为:元(人民币)
/// </summary>
[XmlElement("total_pay_amount")]
public string TotalPayAmount { get; set; }
}
}