mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-12-21 19:09:58 +08:00
32 lines
1.3 KiB
C#
32 lines
1.3 KiB
C#
namespace SKIT.FlurlHttpClient.Wechat.Api.Events
|
|
{
|
|
/// <summary>
|
|
/// <para>表示回复 EVENT.waybill_complaint 事件的数据。</para>
|
|
/// <para>REF: https://developers.weixin.qq.com/miniprogram/dev/platform-capabilities/industry/express/delivery/single-delivery.html </para>
|
|
/// </summary>
|
|
public class WaybillComplaintReply : WechatApiEvent, WechatApiEvent.Serialization.IJsonSerializable, WechatApiEvent.Serialization.IXmlSerializable
|
|
{
|
|
/// <summary>
|
|
/// 获取或设置处理结果错误码。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("ResultCode")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("ResultCode")]
|
|
[System.Xml.Serialization.XmlElement("ResultCode")]
|
|
public int ResultCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 获取或设置处理结果错误信息。
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("ResultMsg")]
|
|
[System.Text.Json.Serialization.JsonPropertyName("ResultMsg")]
|
|
[System.Xml.Serialization.XmlElement("ResultMsg", IsNullable = true)]
|
|
public string? ResultMessage { get; set; }
|
|
|
|
public WaybillComplaintReply()
|
|
{
|
|
MessageType = "event";
|
|
Event = "waybill_complaint";
|
|
}
|
|
}
|
|
}
|