using System;
using System.Collections.Generic;
namespace SKIT.FlurlHttpClient.Wechat.Api.Events
{
///
/// 表示 EVENT.betaapp_verify_apply_event 事件的数据。
/// REF: https://developers.weixin.qq.com/doc/oplatform/Third-party_Platforms/2.0/api/verify_beta_Mini_Programs/mpverifybetaweapp.html
///
public class BetaAppVerifyApplyEvent : WechatApiEvent, WechatApiEvent.Types.IXmlSerializable
{
public new static class Types
{
public class EventData : BetaAppAuthorizationApplyEvent.Types.EventData
{
}
}
///
/// 获取或设置事件数据。
///
[System.Xml.Serialization.XmlElement("ApplyAuthorizationInfoNoitfy")]
public Types.EventData EventData { get; set; } = default!;
}
}