using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// PaymentCredential Data Structure. /// [Serializable] public class PaymentCredential : AopObject { /// /// 码过期时间。{UTC timestamp when the payment credential is no longer valid for payment. W3C’s definition of the ISO 8601 date and time format: yyyy-MM-dd'T'HH:mm:ss.SSSZ} /// [XmlElement("expiration_timestamp")] public string ExpirationTimestamp { get; set; } /// /// 码的id。{Identifier for this credential} /// [XmlElement("identifier")] public string Identifier { get; set; } /// /// 码类型。{To enable QR code and barcode functionality} /// [XmlElement("payment_credential_type")] public string PaymentCredentialType { get; set; } /// /// 码值加密结果。{The encrypted credential value} /// [XmlElement("value")] public EncryptedPaymentCredential Value { get; set; } } }