NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipaySecurityDataDatabusSe...

25 lines
727 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>
/// AlipaySecurityDataDatabusSendModel Data Structure.
/// </summary>
[Serializable]
public class AlipaySecurityDataDatabusSendModel : AopObject
{
/// <summary>
/// 安全累计属性列表字段安全属性列表key为属性名称value为属性值如 key:"145" value:"1"
/// </summary>
[XmlElement("security_content")]
public string SecurityContent { get; set; }
/// <summary>
/// 代码发送给安全核心的事件编码
/// </summary>
[XmlElement("security_sign")]
public string SecuritySign { get; set; }
}
}