using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayUserApplepayMerchantauthtokenGetModel Data Structure. /// [Serializable] public class AlipayUserApplepayMerchantauthtokenGetModel : AopObject { /// /// 金额 /// [XmlElement("amount")] public string Amount { get; set; } /// /// 币种 /// [XmlElement("currency_code")] public string CurrencyCode { get; set; } /// /// 支付宝合作伙伴id /// [XmlElement("partner_owned_merchant_identifier")] public string PartnerOwnedMerchantIdentifier { get; set; } /// /// 卡id(由固定前缀+32位数字构成) /// [XmlElement("provisioning_bundle_identifier")] public string ProvisioningBundleIdentifier { get; set; } /// /// applePay通用请求头 /// [XmlElement("request_header")] public OpenApiAppleRequestHeader RequestHeader { get; set; } /// /// wagu公交交易完成后通知标识,由wagu指定,并在交易完成后通知wagu时携带此参数 /// [XmlElement("transaction_notification_identifier")] public string TransactionNotificationIdentifier { get; set; } } }