using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Top.Api.Response
{
///
/// TmcMessageProduceResponse.
///
public class TmcMessageProduceResponse : TopResponse
{
///
/// 是否成功
///
[XmlElement("is_success")]
public bool IsSuccess { get; set; }
///
/// 消息ID
///
[XmlArray("msg_ids")]
[XmlArrayItem("string")]
public List MsgIds { get; set; }
///
/// 投递目标数
///
[XmlElement("total")]
public long Total { get; set; }
}
}