using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayPayCodecApplepayBarcodeeventNotifyModel Data Structure.
///
[Serializable]
public class AlipayPayCodecApplepayBarcodeeventNotifyModel : AopObject
{
///
/// 码的id。{Identifier for this credential}
///
[XmlElement("barcode_identifier")]
public string BarcodeIdentifier { get; set; }
///
/// 上报事件,Base64 encoded UTF-8 bytes of Event Data JSON object defined below.
///
[XmlElement("event")]
public string Event { get; set; }
///
/// 上报时间的签名,Base64 encoded PKCS#7 detached ECDSA signature. Signature data is generated over the SHA- 256 hash of Base64 decoded event bytes。
///
[XmlElement("signature")]
public string Signature { get; set; }
}
}