NewGaoKaoApi/PaymentSDK/AliPay/Domain/TicketInfoResult.cs

37 lines
1.4 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;
namespace Aop.Api.Domain
{
/// <summary>
/// TicketInfoResult Data Structure.
/// </summary>
[Serializable]
public class TicketInfoResult : AopObject
{
/// <summary>
/// 地址 不同类型下的地址含义不同。若type为MEAL_NUMaddress则代表取餐地点若type为PICKUP_CODEaddress则代表取件地点。其他类型查看小程序订单产品文档
/// </summary>
[XmlElement("address")]
public string Address { get; set; }
/// <summary>
/// 单据号 不同类型下单据号含义不同。若类型为MEAL_NUM则ticket_no表示取餐号若类型为PICKUP_CODE则ticket_no表示取件码其他类型查看小程序订单产品文档
/// </summary>
[XmlElement("ticket_no")]
public string TicketNo { get; set; }
/// <summary>
/// 时间 不同类型下的地址含义不同。若type为MEAL_NUMtime则代表取餐时间若type为PICKUP_CODEaddress则代表取件时间。其他类型查看小程序订单产品文档
/// </summary>
[XmlElement("time")]
public string Time { get; set; }
/// <summary>
/// 凭证类型 MEAL_NUM取餐号 PICKUP_CODE取件号 具体类型查看产品文档
/// </summary>
[XmlElement("type")]
public string Type { get; set; }
}
}