NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayOpenMiniContentSyncMo...

37 lines
1.2 KiB
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;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayOpenMiniContentSyncModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOpenMiniContentSyncModel : AopObject
{
/// <summary>
/// 具体的内容数据采用json格式不同类型不同操作数据不同。可参考具体内容接入文档中的详细说明。
/// </summary>
[XmlElement("content_data")]
public string ContentData { get; set; }
/// <summary>
/// 内容类型,例如门店、商品等
/// </summary>
[XmlElement("content_type")]
public string ContentType { get; set; }
/// <summary>
/// 扩展信息json格式。可参考具体内容接入文档中的详细说明。
/// </summary>
[XmlElement("extend_info")]
public string ExtendInfo { get; set; }
/// <summary>
/// 内容类型下的具体操作,比如门店类型下,小程序批量绑定门店。可参考具体内容接入文档中的详细说明。
/// </summary>
[XmlElement("operation")]
public string Operation { get; set; }
}
}