NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayPayApplepayTransactio...

45 lines
1.2 KiB
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;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayPayApplepayTransactionauthtokenCreateModel Data Structure.
/// </summary>
[Serializable]
public class AlipayPayApplepayTransactionauthtokenCreateModel : AopObject
{
/// <summary>
/// 设备id
/// </summary>
[XmlElement("device_identifier")]
public string DeviceIdentifier { get; set; }
/// <summary>
/// 卡id
/// </summary>
[XmlElement("provisioning_bundle_identifier")]
public string ProvisioningBundleIdentifier { get; set; }
/// <summary>
/// 卡id列表与卡id两者不能同时为空
/// </summary>
[XmlArray("provisioning_bundle_identifiers")]
[XmlArrayItem("string")]
public List<string> ProvisioningBundleIdentifiers { get; set; }
/// <summary>
/// 推送通知给wagu设备的token
/// </summary>
[XmlElement("push_token")]
public string PushToken { get; set; }
/// <summary>
/// uid
/// </summary>
[XmlElement("reference_identifier")]
public string ReferenceIdentifier { get; set; }
}
}