NewGaoKaoApi/PaymentSDK/AliPay/Response/AlipayOfflineMarketShopBatc...

32 lines
805 B
C#
Raw 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.Response
{
/// <summary>
/// AlipayOfflineMarketShopBatchqueryResponse.
/// </summary>
public class AlipayOfflineMarketShopBatchqueryResponse : AopResponse
{
/// <summary>
/// 当前页码
/// </summary>
[XmlElement("current_pageno")]
public string CurrentPageno { get; set; }
/// <summary>
/// 门店列表ID逗号分隔
/// </summary>
[XmlArray("shop_ids")]
[XmlArrayItem("string")]
public List<string> ShopIds { get; set; }
/// <summary>
/// 总页码数目
/// </summary>
[XmlElement("total_pageno")]
public string TotalPageno { get; set; }
}
}