NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipaySocialBaseContentlibO...

31 lines
974 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>
/// AlipaySocialBaseContentlibOfferSyncModel Data Structure.
/// </summary>
[Serializable]
public class AlipaySocialBaseContentlibOfferSyncModel : AopObject
{
/// <summary>
/// 参数名代表同步到我方的业务方来源值在内容中台中是唯一标示对接内容中台的时候由中台PD告知对方
/// </summary>
[XmlElement("channel_id")]
public string ChannelId { get; set; }
/// <summary>
/// 内容中台offer同步具体的数据内容是个列表支持批量修改传递
/// </summary>
[XmlElement("display_app")]
public OfferObject DisplayApp { get; set; }
/// <summary>
/// 标示本次操作具体的行为
/// </summary>
[XmlElement("operate_type")]
public string OperateType { get; set; }
}
}