NewGaoKaoApi/PaymentSDK/AliPay/Domain/TradePrecreateConfirmPrecre...

31 lines
887 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.Domain
{
/// <summary>
/// TradePrecreateConfirmPrecreateCodeInfo Data Structure.
/// </summary>
[Serializable]
public class TradePrecreateConfirmPrecreateCodeInfo : AopObject
{
/// <summary>
/// 预下单阶段产生的码串,对应预下单订单。
/// </summary>
[XmlElement("precreate_code")]
public string PrecreateCode { get; set; }
/// <summary>
/// 码创建时间
/// </summary>
[XmlElement("precreate_code_create_time")]
public string PrecreateCodeCreateTime { get; set; }
/// <summary>
/// 预下单阶段的码串类型 订单二维码取值qr_code
/// </summary>
[XmlElement("precreate_code_type")]
public string PrecreateCodeType { get; set; }
}
}