NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayDataAiserviceCloudbus...

63 lines
1.7 KiB
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;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayDataAiserviceCloudbusTimeodGetModel Data Structure.
/// </summary>
[Serializable]
public class AlipayDataAiserviceCloudbusTimeodGetModel : AopObject
{
/// <summary>
/// 接口版本
/// </summary>
[XmlElement("app_version")]
public string AppVersion { get; set; }
/// <summary>
/// 市
/// </summary>
[XmlElement("city_code")]
public string CityCode { get; set; }
/// <summary>
/// 工作日和非工作日 枚举{WORKDAY,WEEKEND,ALL}
/// </summary>
[XmlElement("date_type")]
public string DateType { get; set; }
/// <summary>
/// 目的地 geohash
/// </summary>
[XmlElement("dest_geo")]
public string DestGeo { get; set; }
/// <summary>
/// 结束时间精确到月。例如201901
/// </summary>
[XmlElement("end_date")]
public string EndDate { get; set; }
/// <summary>
/// 起始区域 geohash list 。 区域必须连续,否则对结果有影响
/// </summary>
[XmlArray("origin_geo_hashs")]
[XmlArrayItem("string")]
public List<string> OriginGeoHashs { get; set; }
/// <summary>
/// 商户ID
/// </summary>
[XmlElement("partner_id")]
public string PartnerId { get; set; }
/// <summary>
/// 开始时间 精确到月 例如201904
/// </summary>
[XmlElement("start_date")]
public string StartDate { get; set; }
}
}