NewGaoKaoApi/PaymentSDK/AliPay/Response/AlipayOpenPublicDefaultExte...

18 lines
559 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.Response
{
/// <summary>
/// AlipayOpenPublicDefaultExtensionCreateResponse.
/// </summary>
public class AlipayOpenPublicDefaultExtensionCreateResponse : AopResponse
{
/// <summary>
/// 一套扩展区的key创建一套扩展区成功后支付宝会将该字段返回后续对扩展区进行删除等操作都会用到这个值。
/// </summary>
[XmlElement("extension_key")]
public string ExtensionKey { get; set; }
}
}