using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayAccountCashpoolAllocateruleCreateModel Data Structure.
///
[Serializable]
public class AlipayAccountCashpoolAllocateruleCreateModel : AopObject
{
///
/// 转账规则
///
[XmlElement("allocation_rule")]
public InstCashPoolAllocationRuleVO AllocationRule { get; set; }
///
/// 资金池唯一标识
///
[XmlElement("cash_pool_id")]
public string CashPoolId { get; set; }
///
/// 操作员
///
[XmlElement("operator")]
public string Operator { get; set; }
///
/// 对应的规则组ID
///
[XmlElement("rule_group_id")]
public string RuleGroupId { get; set; }
}
}