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