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.

30 lines
936 B
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>
/// AlipayFundTransToaccountTransferResponse.
/// </summary>
public class AlipayFundTransToaccountTransferResponse : AopResponse
{
/// <summary>
/// 支付宝转账单据号,成功一定返回,失败可能不返回也可能返回。
/// </summary>
[XmlElement("order_id")]
public string OrderId { get; set; }
/// <summary>
/// 商户转账唯一订单号:发起转账来源方定义的转账单据号。请求时对应的参数,原样返回。
/// </summary>
[XmlElement("out_biz_no")]
public string OutBizNo { get; set; }
/// <summary>
/// 支付时间格式为yyyy-MM-dd HH:mm:ss仅转账成功返回。
/// </summary>
[XmlElement("pay_date")]
public string PayDate { get; set; }
}
}