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

57 lines
1.6 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>
/// AlipayDataAiserviceCloudbusTotalodQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayDataAiserviceCloudbusTotalodQueryModel : AopObject
{
/// <summary>
/// 接口版本
/// </summary>
[XmlElement("app_version")]
public string AppVersion { get; set; }
/// <summary>
/// 市
/// </summary>
[XmlElement("city_code")]
public string CityCode { 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; }
/// <summary>
/// 结果类型:枚举类型 0包含O区域内部数据 1不包含O内部数据 . 默认0
/// </summary>
[XmlElement("type")]
public string Type { get; set; }
}
}