NewGaoKaoApi/PaymentSDK/AliPay/Domain/GroupRecord.cs

63 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>
/// GroupRecord Data Structure.
/// </summary>
[Serializable]
public class GroupRecord : AopObject
{
/// <summary>
/// 本次返回的结果数量
/// </summary>
[XmlElement("count")]
public long Count { get; set; }
/// <summary>
/// 展位IDfinetinyapp精品小程序 finecard场景card
/// </summary>
[XmlElement("group_id")]
public string GroupId { get; set; }
/// <summary>
/// 显示名称,可为空
/// </summary>
[XmlElement("group_name")]
public string GroupName { get; set; }
/// <summary>
/// 是否还有更多结果
/// </summary>
[XmlElement("has_more")]
public bool HasMore { get; set; }
/// <summary>
/// 命中结果
/// </summary>
[XmlArray("hits")]
[XmlArrayItem("hit")]
public List<Hit> Hits { get; set; }
/// <summary>
/// 更多显示名称
/// </summary>
[XmlElement("more_link_name")]
public string MoreLinkName { get; set; }
/// <summary>
/// 更多url
/// </summary>
[XmlElement("more_link_url")]
public string MoreLinkUrl { get; set; }
/// <summary>
/// 搜索命中结果总数量
/// </summary>
[XmlElement("total_count")]
public long TotalCount { get; set; }
}
}