NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayUserApplepayMerchanta...

49 lines
1.5 KiB
C#
Raw 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>
/// AlipayUserApplepayMerchantauthtokenGetModel Data Structure.
/// </summary>
[Serializable]
public class AlipayUserApplepayMerchantauthtokenGetModel : AopObject
{
/// <summary>
/// 金额
/// </summary>
[XmlElement("amount")]
public string Amount { get; set; }
/// <summary>
/// 币种
/// </summary>
[XmlElement("currency_code")]
public string CurrencyCode { get; set; }
/// <summary>
/// 支付宝合作伙伴id
/// </summary>
[XmlElement("partner_owned_merchant_identifier")]
public string PartnerOwnedMerchantIdentifier { get; set; }
/// <summary>
/// 卡id(由固定前缀+32位数字构成)
/// </summary>
[XmlElement("provisioning_bundle_identifier")]
public string ProvisioningBundleIdentifier { get; set; }
/// <summary>
/// applePay通用请求头
/// </summary>
[XmlElement("request_header")]
public OpenApiAppleRequestHeader RequestHeader { get; set; }
/// <summary>
/// wagu公交交易完成后通知标识由wagu指定并在交易完成后通知wagu时携带此参数
/// </summary>
[XmlElement("transaction_notification_identifier")]
public string TransactionNotificationIdentifier { get; set; }
}
}