NewGaoKaoApi/PaymentSDK/AliPay/Domain/VehicleMsgSendResultEntity.cs

31 lines
935 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>
/// VehicleMsgSendResultEntity Data Structure.
/// </summary>
[Serializable]
public class VehicleMsgSendResultEntity : AopObject
{
/// <summary>
/// identity字段值为不大于64位的保证唯一的字符串该字段用于保证消息唯一性防止消息重复推送相当于业务流水号由接入方自行生成
/// </summary>
[XmlElement("out_msg_id")]
public string OutMsgId { get; set; }
/// <summary>
/// 消息如果投递失败的提示信息
/// </summary>
[XmlElement("result")]
public string Result { get; set; }
/// <summary>
/// 投递结果,车主服务是否成功接收消息请求
/// </summary>
[XmlElement("success")]
public bool Success { get; set; }
}
}