NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayEcoCplifeNoticePublis...

27 lines
764 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;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayEcoCplifeNoticePublishModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEcoCplifeNoticePublishModel : AopObject
{
/// <summary>
/// 待发布通知的目标物业小区ID列表使用支付宝平台统一的小区ID编码。
/// </summary>
[XmlArray("community_id_set")]
[XmlArrayItem("string")]
public List<string> CommunityIdSet { get; set; }
/// <summary>
/// 待发送的通知内容
/// </summary>
[XmlElement("notice_details")]
public CplifeNoticeDetail NoticeDetails { get; set; }
}
}