NewGaoKaoApi/PaymentSDK/AliPay/Response/KoubeiCateringCommodityOrde...

38 lines
1.0 KiB
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>
/// KoubeiCateringCommodityOrderBuyResponse.
/// </summary>
public class KoubeiCateringCommodityOrderBuyResponse : AopResponse
{
/// <summary>
/// 扩展字段,供以后拓展使用
/// </summary>
[XmlArray("ext_info")]
[XmlArrayItem("string")]
public List<string> ExtInfo { get; set; }
/// <summary>
/// order_result为success时返回order_result为fail的时候不返回
/// </summary>
[XmlElement("order_id")]
public string OrderId { get; set; }
/// <summary>
/// success表示订购成功fail表示订购失败
/// </summary>
[XmlElement("order_result")]
public string OrderResult { get; set; }
/// <summary>
/// 描述订购结果信息
/// </summary>
[XmlElement("order_result_msg")]
public string OrderResultMsg { get; set; }
}
}