NewGaoKaoApi/PaymentSDK/AliPay/Response/AlipayEcoEduKtSchoolinfoMod...

24 lines
619 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.Response
{
/// <summary>
/// AlipayEcoEduKtSchoolinfoModifyResponse.
/// </summary>
public class AlipayEcoEduKtSchoolinfoModifyResponse : AopResponse
{
/// <summary>
/// 支付宝分配给学校的编码,作为学校在支付宝的标识
/// </summary>
[XmlElement("school_no")]
public string SchoolNo { get; set; }
/// <summary>
/// Y代表成功N代表失败
/// </summary>
[XmlElement("status")]
public string Status { get; set; }
}
}