Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/BatchRefundDetailResult.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

92 lines
2.3 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// BatchRefundDetailResult Data Structure.
/// </summary>
[Serializable]
public class BatchRefundDetailResult : AopObject
{
/// <summary>
/// 商户请求批量退款时传递的批次号。
/// </summary>
[JsonProperty("batch_no")]
public string BatchNo { get; set; }
/// <summary>
/// 充退状态S成功F失败P处理中。
/// </summary>
[JsonProperty("dback_status")]
public string DbackStatus { get; set; }
/// <summary>
/// 预估银行响应时间
/// </summary>
[JsonProperty("est_bank_ack_time")]
public string EstBankAckTime { get; set; }
/// <summary>
/// 预估银行入账时间
/// </summary>
[JsonProperty("est_bank_receipt_time")]
public string EstBankReceiptTime { get; set; }
/// <summary>
/// 是否有充退
/// </summary>
[JsonProperty("has_deposit_back")]
public bool HasDepositBack { get; set; }
/// <summary>
/// 退款金额
/// </summary>
[JsonProperty("refund_amount")]
public string RefundAmount { get; set; }
/// <summary>
/// 退分润信息列表
/// </summary>
[JsonProperty("refund_royaltys")]
public List<RefundRoyaltyResult> RefundRoyaltys { get; set; }
/// <summary>
/// 退补差金额
/// </summary>
[JsonProperty("refund_suppl_amount")]
public string RefundSupplAmount { get; set; }
/// <summary>
/// 退补差结果码
/// </summary>
[JsonProperty("refund_suppl_result_code")]
public string RefundSupplResultCode { get; set; }
/// <summary>
/// 剩余补差金额
/// </summary>
[JsonProperty("rest_suppl_amount")]
public string RestSupplAmount { get; set; }
/// <summary>
/// 交易退款结果码。如果成功为SUCCESS如果处理中为PROCESSING其它情况为错误码。
/// </summary>
[JsonProperty("result_code")]
public string ResultCode { get; set; }
/// <summary>
/// 支付宝交易号
/// </summary>
[JsonProperty("trade_no")]
public string TradeNo { get; set; }
/// <summary>
/// 退款解冻信息
/// </summary>
[JsonProperty("unfreeze_details")]
public RefundUnfreezeResult UnfreezeDetails { get; set; }
}
}