using Newtonsoft.Json;
using System.ComponentModel.DataAnnotations;
namespace LifePayment.Domain
{
public class FundAccountQueryInput
{
///
/// 蚂蚁统一会员ID
///
[JsonProperty("alipay_user_id", NullValueHandling = NullValueHandling.Ignore)]
[Required]
public string AlipayUserId
{
set;
get;
}
///
/// 查询的账号类型,查询余额账户值为ACCTRANS_ACCOUNT。必填。
///
[JsonProperty("account_type", NullValueHandling = NullValueHandling.Ignore)]
public string AccountType
{
set;
get;
}
}
}