NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayMerchantOrderConsumer...

31 lines
1.1 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;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayMerchantOrderConsumerQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayMerchantOrderConsumerQueryModel : AopObject
{
/// <summary>
/// 业务号(目前仅支持交易号) 注: 1. order_id、biz_no、两者必选其一若用biz_no查询必须传入buyer_id 2.若都传优先级order_id>biz_no忽略优先级低的字段
/// </summary>
[XmlElement("biz_no")]
public string BizNo { get; set; }
/// <summary>
/// 买家支付宝用户id 注若用biz_no查询必须传入buyer_id
/// </summary>
[XmlElement("buyer_id")]
public string BuyerId { get; set; }
/// <summary>
/// 支付宝订单号 注: 1. order_id、biz_no、两者必选其一若用biz_no查询必须传入buyer_id 2.若都传优先级order_id>biz_no忽略优先级低的字段
/// </summary>
[XmlElement("order_id")]
public string OrderId { get; set; }
}
}