NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipaySocialGiftOrderQueryM...

25 lines
734 B
C#
Raw Permalink 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>
/// AlipaySocialGiftOrderQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipaySocialGiftOrderQueryModel : AopObject
{
/// <summary>
/// 商户再送礼平台的唯一ID用于标识具体的调用业务方需要先在送礼平台进行业务类型的分配之后才看使用。
/// </summary>
[XmlElement("mid")]
public string Mid { get; set; }
/// <summary>
/// 对应送礼平台的主订单ID可根据此进行订单查询
/// </summary>
[XmlElement("order_id")]
public string OrderId { get; set; }
}
}