NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayOpenInviteOrderQueryM...

25 lines
723 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>
/// AlipayOpenInviteOrderQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOpenInviteOrderQueryModel : AopObject
{
/// <summary>
/// 商家的支付宝账号如果调用alipay.open.invite.order.create接口时有传入支付宝账号则这里查询签约状态时必须要传
/// </summary>
[XmlElement("alipay_logon_id")]
public string AlipayLogonId { get; set; }
/// <summary>
/// isv业务系统单据编号
/// </summary>
[XmlElement("isv_biz_id")]
public string IsvBizId { get; set; }
}
}