NewGaoKaoApi/PaymentSDK/AliPay/Response/KoubeiTradeOrderPrecreateRe...

24 lines
654 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;
namespace Aop.Api.Response
{
/// <summary>
/// KoubeiTradeOrderPrecreateResponse.
/// </summary>
public class KoubeiTradeOrderPrecreateResponse : AopResponse
{
/// <summary>
/// 订单号,唯一标识口碑侧一笔订单
/// </summary>
[XmlElement("order_no")]
public string OrderNo { get; set; }
/// <summary>
/// 业务用到的码值,当前仅支持二维码 当biz_type传入POST_ORDER_PAY时该字段为必选
/// </summary>
[XmlElement("qr_code")]
public string QrCode { get; set; }
}
}