45 lines
1.2 KiB
C#
45 lines
1.2 KiB
C#
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; }
|
||
}
|
||
}
|