NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayCommerceIotDeviceTrac...

31 lines
844 B
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;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayCommerceIotDeviceTraceQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayCommerceIotDeviceTraceQueryModel : AopObject
{
/// <summary>
/// 设备唯一标识设备id
/// </summary>
[XmlElement("biz_tid")]
public string BizTid { get; set; }
/// <summary>
/// 查询轨迹的结束时间.必须在当前时间的1小时之内
/// </summary>
[XmlElement("end_time")]
public string EndTime { get; set; }
/// <summary>
/// 查询轨迹的开始时间. 必须在当前时间的1小时之内
/// </summary>
[XmlElement("start_time")]
public string StartTime { get; set; }
}
}