NewGaoKaoApi/PaymentSDK/AliPay/Domain/MemoElement.cs

25 lines
708 B
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;
namespace Aop.Api.Domain
{
/// <summary>
/// MemoElement Data Structure.
/// </summary>
[Serializable]
public class MemoElement : AopObject
{
/// <summary>
/// 是否是常量,默认常量
/// </summary>
[XmlElement("constant")]
public bool Constant { get; set; }
/// <summary>
/// 字段替换的keyDEBIT_ACCOUNT_NO/CREDIT_ACCOUNT_NO/DEBIT_INST_ID/CREDIT_INST_ID/TRANS_TIME/BIZ_NO 付款账号/收款账号/付款账户机构id/收款账户机构id/交易时间/业务单号
/// </summary>
[XmlElement("key")]
public string Key { get; set; }
}
}