NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayOpenPublicPersonalize...

25 lines
850 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>
/// AlipayOpenPublicPersonalizedExtensionSetModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOpenPublicPersonalizedExtensionSetModel : AopObject
{
/// <summary>
/// 扩展区套id调用创建个性化扩展区接口时返回
/// </summary>
[XmlElement("extension_key")]
public string ExtensionKey { get; set; }
/// <summary>
/// 扩展区操作类型支持2个值ON、OFFON代表上线操作OFF代表下线操作。当上线一个扩展区时若存在同样的标签规则且状态为上线的扩展区该扩展区会自动下线
/// </summary>
[XmlElement("status")]
public string Status { get; set; }
}
}