NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipaySocialAntforestAccoun...

55 lines
1.7 KiB
C#
Raw 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>
/// AlipaySocialAntforestAccountTransferModel Data Structure.
/// </summary>
[Serializable]
public class AlipaySocialAntforestAccountTransferModel : AopObject
{
/// <summary>
/// 用户在森林里的账户id转移能量的源头账户可以是user_id相同
/// </summary>
[XmlElement("energy_account_from")]
public string EnergyAccountFrom { get; set; }
/// <summary>
/// 能量转移的目标账户
/// </summary>
[XmlElement("energy_account_to")]
public string EnergyAccountTo { get; set; }
/// <summary>
/// 转移出去的能量值
/// </summary>
[XmlElement("energy_count")]
public long EnergyCount { get; set; }
/// <summary>
/// 扩展字段,用于不同业务之间的数据扩展
/// </summary>
[XmlElement("ext_info")]
public string ExtInfo { get; set; }
/// <summary>
/// 比如某种业务标准外部订单号,比如交易外部订单号,代表商户端自己订单号
/// </summary>
[XmlElement("out_biz_no")]
public string OutBizNo { get; set; }
/// <summary>
/// USER_TO_ACCOUNT 内部户->外部户转移,钉钉用这个类型
/// </summary>
[XmlElement("transfer_type")]
public string TransferType { get; set; }
/// <summary>
/// 蚂蚁统一会员ID执行该操作的支付宝用户
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
}
}