NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayFundBatchCloseModel.cs

33 lines
1.1 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;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayFundBatchCloseModel Data Structure.
/// </summary>
[Serializable]
public class AlipayFundBatchCloseModel : AopObject
{
/// <summary>
/// 支付宝内部的批次ID 本参数和商户的批次号两者不能同时为空。 当本参数和商户的批次号两者同时提供时,将优先用商户的批次号进行查询。
/// </summary>
[XmlElement("batch_trans_id")]
public string BatchTransId { get; set; }
/// <summary>
/// 业务场景。不同场景值不同,具体值联系支付宝确认。
/// </summary>
[XmlElement("biz_scene")]
public string BizScene { get; set; }
/// <summary>
/// 业务产品码。不同产品值不同,具体值联系支付宝确认。
/// </summary>
[XmlArray("product_code")]
[XmlArrayItem("string")]
public List<string> ProductCode { get; set; }
}
}