NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayFundTransEntrustClose...

31 lines
862 B
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>
/// AlipayFundTransEntrustCloseModel Data Structure.
/// </summary>
[Serializable]
public class AlipayFundTransEntrustCloseModel : AopObject
{
/// <summary>
/// CREDIT_SALE_REPAY
/// </summary>
[XmlElement("biz_scene")]
public string BizScene { get; set; }
/// <summary>
/// 该笔委托支付在支付宝系统内部的单据ID委托支付打款场景必传
/// </summary>
[XmlElement("entrust_order_id")]
public string EntrustOrderId { get; set; }
/// <summary>
/// 业务产品码委托支付传ENTRUSTED_PAYMENT_COLLECTION
/// </summary>
[XmlElement("product_code")]
public string ProductCode { get; set; }
}
}