NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayAccountCashpoolCreate...

37 lines
923 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>
/// AlipayAccountCashpoolCreateModel Data Structure.
/// </summary>
[Serializable]
public class AlipayAccountCashpoolCreateModel : AopObject
{
/// <summary>
/// 设置资金池名称
/// </summary>
[XmlElement("cash_pool_name")]
public string CashPoolName { get; set; }
/// <summary>
/// INITIAL/RUN/STOP初始、运行、暂停状态
/// </summary>
[XmlElement("cash_pool_status")]
public string CashPoolStatus { get; set; }
/// <summary>
/// 备注信息
/// </summary>
[XmlElement("memo")]
public string Memo { get; set; }
/// <summary>
/// 提交人名称
/// </summary>
[XmlElement("operator")]
public string Operator { get; set; }
}
}