using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayDataAiserviceCloudbusMetrodetailQueryModel Data Structure.
///
[Serializable]
public class AlipayDataAiserviceCloudbusMetrodetailQueryModel : AopObject
{
///
/// 版本号
///
[XmlElement("app_version")]
public string AppVersion { get; set; }
///
/// 市
///
[XmlElement("city_code")]
public string CityCode { get; set; }
///
/// 6位目的地geohash
///
[XmlElement("dest_geo")]
public string DestGeo { get; set; }
///
/// 结束时间
///
[XmlElement("end_date")]
public string EndDate { get; set; }
///
/// 进出站 0:进站 1:出站
///
[XmlElement("is_out")]
public long IsOut { get; set; }
///
/// 商户ID
///
[XmlElement("partner_id")]
public string PartnerId { get; set; }
///
/// 开始年月
///
[XmlElement("start_date")]
public string StartDate { get; set; }
///
/// 站点id
///
[XmlElement("station_id")]
public string StationId { get; set; }
///
/// 操作类型: 0:普通(默认) 1:潜在
///
[XmlElement("type")]
public long Type { get; set; }
}
}