NewGaoKaoApi/PaymentSDK/AliPay/Domain/TemplateSecondaryOperationD...

31 lines
981 B
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>
/// TemplateSecondaryOperationDTO Data Structure.
/// </summary>
[Serializable]
public class TemplateSecondaryOperationDTO : AopObject
{
/// <summary>
/// 是否进行核销。支持以 $动态参数$ 形式的自定义动态参数传值。
/// </summary>
[XmlElement("need_write_off")]
public bool NeedWriteOff { get; set; }
/// <summary>
/// 辅助核销区标题文案,支持以 $动态参数$ 形式的自定义动态参数传值。
/// </summary>
[XmlElement("title")]
public string Title { get; set; }
/// <summary>
/// 辅助核销区跳转链接需要带上http、https、alipays等协议头。支持以 $动态参数$ 形式的自定义动态参数传值。
/// </summary>
[XmlElement("url")]
public string Url { get; set; }
}
}