NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayAccountCashpoolRulegr...

87 lines
2.4 KiB
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;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayAccountCashpoolRulegroupCreateModel Data Structure.
/// </summary>
[Serializable]
public class AlipayAccountCashpoolRulegroupCreateModel : AopObject
{
/// <summary>
/// 资金池唯一标识
/// </summary>
[XmlElement("cash_pool_id")]
public string CashPoolId { get; set; }
/// <summary>
/// 生效日期
/// </summary>
[XmlElement("effective_time")]
public string EffectiveTime { get; set; }
/// <summary>
/// 过期日期
/// </summary>
[XmlElement("expire_time")]
public string ExpireTime { get; set; }
/// <summary>
/// 调拨额度配置
/// </summary>
[XmlArray("inst_allocation_quota_vo_list")]
[XmlArrayItem("inst_allocation_quota_v_o")]
public List<InstAllocationQuotaVO> InstAllocationQuotaVoList { get; set; }
/// <summary>
/// 备注信息
/// </summary>
[XmlElement("memo")]
public string Memo { get; set; }
/// <summary>
/// 操作人
/// </summary>
[XmlElement("operator")]
public string Operator { get; set; }
/// <summary>
/// 外部单据号,做业务幂等使用
/// </summary>
[XmlElement("out_biz_no")]
public string OutBizNo { get; set; }
/// <summary>
/// 父账户目标水位
/// </summary>
[XmlElement("parent_target_water_line")]
public string ParentTargetWaterLine { get; set; }
/// <summary>
/// 规则组名称
/// </summary>
[XmlElement("rule_group_name")]
public string RuleGroupName { get; set; }
/// <summary>
/// 规则组类型,上划/下拨UP_WARD_RULE/DOWN_WARD_RULE
/// </summary>
[XmlElement("rule_group_type")]
public string RuleGroupType { get; set; }
/// <summary>
/// 触发时间填cron表达式
/// </summary>
[XmlElement("trigger_time")]
public string TriggerTime { get; set; }
/// <summary>
/// 规则组水位模式,主账户模式/子账户模式SUB_ACCOUNT_MODE/MAIN_ACCOUNT_MODE
/// </summary>
[XmlElement("water_mode")]
public string WaterMode { get; set; }
}
}