NewGaoKaoApi/PaymentSDK/AliPay/Domain/DeviceBehaviorLogResponse.cs

31 lines
765 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>
/// DeviceBehaviorLogResponse Data Structure.
/// </summary>
[Serializable]
public class DeviceBehaviorLogResponse : AopObject
{
/// <summary>
/// 行为日志类型SCAN_CDOE:扫码/HEARTBEAT:心跳
/// </summary>
[XmlElement("behavior_type")]
public string BehaviorType { get; set; }
/// <summary>
/// 日志对应的设备信息
/// </summary>
[XmlElement("log_content")]
public string LogContent { get; set; }
/// <summary>
/// 日志时间
/// </summary>
[XmlElement("log_time")]
public string LogTime { get; set; }
}
}