using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayOpenDataServiceQueryModel Data Structure. /// [Serializable] public class AlipayOpenDataServiceQueryModel : AopObject { /// /// 发起查询的客户端版本号 /// [XmlElement("client_info")] public ClientInfo ClientInfo { get; set; } /// /// 每页最多显示的搜索结果数量,默认值20 /// [XmlElement("limit_size")] public long LimitSize { get; set; } /// /// 用户所处的地理位置信息 /// [XmlElement("location_info")] public LocationInfo LocationInfo { get; set; } /// /// 用户输入的搜索请求 /// [XmlElement("query")] public string Query { get; set; } /// /// 场景code,由appxsearch分配 /// [XmlElement("scene_code")] public string SceneCode { get; set; } /// /// 用户每发起一次请求的唯一ID /// [XmlElement("search_id")] public string SearchId { get; set; } /// /// 同一个用户同一个session中发起的搜索请求 /// [XmlElement("session_id")] public string SessionId { get; set; } /// /// 显示搜索结果的起始位置,默认值0 /// [XmlElement("start_num")] public long StartNum { get; set; } /// /// 用户的支付宝ID /// [XmlElement("user_id")] public string UserId { get; set; } } }