using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayOverseasRemitWithdrawNotifyModel Data Structure.
///
[Serializable]
public class AlipayOverseasRemitWithdrawNotifyModel : AopObject
{
///
/// APS定义的机构ID
///
[XmlElement("participant_id")]
public string ParticipantId { get; set; }
///
/// json map 对象,透传一些额外的信息
///
[XmlElement("pass_through_info")]
public string PassThroughInfo { get; set; }
///
/// ISO 4217规范的三位货币码
///
[XmlElement("withdraw_amount_currency")]
public string WithdrawAmountCurrency { get; set; }
///
/// 对应货币的最小单位的货币值,例如 CNY,1就是1分
///
[XmlElement("withdraw_amount_value")]
public string WithdrawAmountValue { get; set; }
///
/// 提现唯一id,由APS生成
///
[XmlElement("withdraw_id")]
public string WithdrawId { get; set; }
///
/// 提现申请ID,由提现申请方定义
///
[XmlElement("withdraw_request_id")]
public string WithdrawRequestId { get; set; }
///
/// 提现申请结果
///
[XmlElement("withdraw_result_code")]
public string WithdrawResultCode { get; set; }
///
/// 提现结果消息
///
[XmlElement("withdraw_result_message")]
public string WithdrawResultMessage { get; set; }
///
/// S 成功 F 失败
///
[XmlElement("withdraw_result_status")]
public string WithdrawResultStatus { get; set; }
///
/// 提现结束时间
///
[XmlElement("withdraw_time")]
public string WithdrawTime { get; set; }
}
}