NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayAccountCashpoolStatus...

37 lines
895 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>
/// AlipayAccountCashpoolStatusModifyModel Data Structure.
/// </summary>
[Serializable]
public class AlipayAccountCashpoolStatusModifyModel : AopObject
{
/// <summary>
/// 资金池状态INITIAL/RUN/STOP
/// </summary>
[XmlElement("adjust_status")]
public string AdjustStatus { get; set; }
/// <summary>
/// 资金池ID
/// </summary>
[XmlElement("cash_pool_id")]
public string CashPoolId { get; set; }
/// <summary>
/// 备注信息
/// </summary>
[XmlElement("memo")]
public string Memo { get; set; }
/// <summary>
/// 操作员
/// </summary>
[XmlElement("operator")]
public string Operator { get; set; }
}
}