NewGaoKaoApi/PaymentSDK/AliPay/Domain/ScheduleTripItem.cs

37 lines
955 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>
/// ScheduleTripItem Data Structure.
/// </summary>
[Serializable]
public class ScheduleTripItem : AopObject
{
/// <summary>
/// 方向,参考方向枚举
/// </summary>
[XmlElement("direction")]
public string Direction { get; set; }
/// <summary>
/// 线路id
/// </summary>
[XmlElement("line_id")]
public string LineId { get; set; }
/// <summary>
/// 单程行驶时间(单位min)
/// </summary>
[XmlElement("run_time")]
public long RunTime { get; set; }
/// <summary>
/// 若time_span为10则06:00表示06:00-06:10的时段 若time_span为30则06:00表示06:00-06:30的时段
/// </summary>
[XmlElement("time_period")]
public string TimePeriod { get; set; }
}
}