NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayEcoCplifePayResultQue...

25 lines
809 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>
/// AlipayEcoCplifePayResultQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEcoCplifePayResultQueryModel : AopObject
{
/// <summary>
/// 查询令牌部分模式下用户缴物业费成功后由支付宝通过异步通知给到开发者系统和trade_no二者传其一即可。
/// </summary>
[XmlElement("query_token")]
public string QueryToken { get; set; }
/// <summary>
/// 用户完成物业缴费后由支付宝异步通知的支付宝交易号和查询token参数二者传其一即可。
/// </summary>
[XmlElement("trade_no")]
public string TradeNo { get; set; }
}
}