NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayOpenPublicAdvertModif...

27 lines
771 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>
/// AlipayOpenPublicAdvertModifyModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOpenPublicAdvertModifyModel : AopObject
{
/// <summary>
/// 广告位id
/// </summary>
[XmlElement("advert_id")]
public string AdvertId { get; set; }
/// <summary>
/// 广告位轮播内容列表数量限制大于1个小于3个广告位轮播内容顺序根据接口传入的顺序排列
/// </summary>
[XmlArray("advert_items")]
[XmlArrayItem("advert_item")]
public List<AdvertItem> AdvertItems { get; set; }
}
}