NewGaoKaoApi/PaymentSDK/AliPay/Domain/KbAdvertAdvSingleVoucherRes...

33 lines
952 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;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// KbAdvertAdvSingleVoucherResponse Data Structure.
/// </summary>
[Serializable]
public class KbAdvertAdvSingleVoucherResponse : AopObject
{
/// <summary>
/// 广告内容模型
/// </summary>
[XmlArray("adv_content_list")]
[XmlArrayItem("kb_advert_adv_content_response")]
public List<KbAdvertAdvContentResponse> AdvContentList { get; set; }
/// <summary>
/// 广告内容广告内容请使用新的属性adv_content_list此属性仍会保留
/// </summary>
[XmlElement("content")]
public KbAdvertAdvContent Content { get; set; }
/// <summary>
/// 券标的
/// </summary>
[XmlElement("voucher")]
public KbAdvertSubjectVoucherResponse Voucher { get; set; }
}
}