using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayPayApplepayTransactionBatchqueryModel Data Structure.
///
[Serializable]
public class AlipayPayApplepayTransactionBatchqueryModel : AopObject
{
///
/// 拉取结果权限authToken
///
[XmlElement("authorization")]
public string Authorization { get; set; }
///
/// 设备id
///
[XmlElement("device_identifier")]
public string DeviceIdentifier { get; set; }
///
/// 卡id
///
[XmlElement("provisioning_bundle_identifier")]
public string ProvisioningBundleIdentifier { get; set; }
///
/// 毫秒级时间戳
///
[XmlElement("tag")]
public string Tag { get; set; }
}
}