using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayAccountCashpoolRuleModifyModel Data Structure.
///
[Serializable]
public class AlipayAccountCashpoolRuleModifyModel : AopObject
{
///
/// 资金池唯一标识
///
[XmlElement("cash_pool_id")]
public string CashPoolId { get; set; }
///
/// 机构自定义备注配置
///
[XmlElement("inst_rule_custom_memo")]
public InstRuleCustomMemoVO InstRuleCustomMemo { get; set; }
///
/// 限额水位线
///
[XmlElement("limit_walter_line")]
public string LimitWalterLine { get; set; }
///
/// 是否需要自定义备注
///
[XmlElement("need_custom_memo")]
public bool NeedCustomMemo { get; set; }
///
/// 操作员
///
[XmlElement("operator")]
public string Operator { get; set; }
///
/// 规则唯一标识
///
[XmlElement("rule_id")]
public string RuleId { get; set; }
///
/// RUN/STOP,运行态/暂停态
///
[XmlElement("rule_status")]
public string RuleStatus { get; set; }
///
/// UP_WARD_RULE/DOWN_WARD_RULE,资金上划/下拨
///
[XmlElement("rule_type")]
public string RuleType { get; set; }
///
/// 目标水位线
///
[XmlElement("target_walter_line")]
public string TargetWalterLine { get; set; }
}
}