NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayFundTransBatchQueryba...

25 lines
696 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>
/// AlipayFundTransBatchQuerybatchModel Data Structure.
/// </summary>
[Serializable]
public class AlipayFundTransBatchQuerybatchModel : AopObject
{
/// <summary>
/// 批次编号,创建批次时返回的批次编号
/// </summary>
[XmlElement("batch_no")]
public string BatchNo { get; set; }
/// <summary>
/// token创建批次时和批次编号一起返回。注在使用批次号查询批次信息时需要带上
/// </summary>
[XmlElement("token")]
public string Token { get; set; }
}
}