NewGaoKaoApi/PaymentSDK/AliPay/Domain/TransOrderDetail.cs

55 lines
1.8 KiB
C#
Raw Permalink Blame History

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.Domain
{
/// <summary>
/// TransOrderDetail Data Structure.
/// </summary>
[Serializable]
public class TransOrderDetail : AopObject
{
/// <summary>
/// JSON格式传递业务扩展参数使用前请与支付宝工程师联系 sub_biz_scene: 子业务场景取值BAOXIAO\TRANSFER\... withdraw_timeliness:到卡申请到账时效, T0当日到账 T1次日到账如果未设置或者值为空默认T0
/// </summary>
[XmlElement("business_params")]
public string BusinessParams { get; set; }
/// <summary>
/// 转账订单的标题,用于在收银台和消费记录展示
/// </summary>
[XmlElement("order_title")]
public string OrderTitle { get; set; }
/// <summary>
/// 商户订单号
/// </summary>
[XmlElement("out_biz_no")]
public string OutBizNo { get; set; }
/// <summary>
/// JSON格式传递业务扩展参数使用前请与支付宝工程师联系
/// </summary>
[XmlElement("passback_params")]
public string PassbackParams { get; set; }
/// <summary>
/// 收款方信息
/// </summary>
[XmlElement("payee_info")]
public Participant PayeeInfo { get; set; }
/// <summary>
/// 转账备注,收、付款方均可见,收款方如果是支付宝账号,会展示在收款方账单里。
/// </summary>
[XmlElement("remark")]
public string Remark { get; set; }
/// <summary>
/// 转账金额
/// </summary>
[XmlElement("trans_amount")]
public string TransAmount { get; set; }
}
}