NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayOpenMiniPlanOperateMo...

25 lines
813 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;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayOpenMiniPlanOperateModifyModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOpenMiniPlanOperateModifyModel : AopObject
{
/// <summary>
/// 小程序投放方案场景码目前只支持传入支付后推荐场景码PAYMENT_SUCCESS
/// </summary>
[XmlElement("scene")]
public string Scene { get; set; }
/// <summary>
/// 目前只支持小程序和生活号类型的优先级调整若需要调整小程序优先请传TINYAPP,PUBLICAPP若需要调整生活号优先请传PUBLICAPP,TINYAPP
/// </summary>
[XmlElement("type_list")]
public string TypeList { get; set; }
}
}