TLSharp/TeleSharp.TL/TL/TLUpdateShortChatMessage.cs
2017-04-13 13:38:01 +07:00

100 lines
3.3 KiB
C#

using System.IO;
namespace TeleSharp.TL
{
[TLObject(377562760)]
public class TLUpdateShortChatMessage : TLAbsUpdates
{
public override int Constructor => 377562760;
public int flags { get; set; }
public bool @out { get; set; }
public bool mentioned { get; set; }
public bool media_unread { get; set; }
public bool silent { get; set; }
public int id { get; set; }
public int from_id { get; set; }
public int chat_id { get; set; }
public string message { get; set; }
public int pts { get; set; }
public int pts_count { get; set; }
public int date { get; set; }
public TLMessageFwdHeader fwd_from { get; set; }
public int? via_bot_id { get; set; }
public int? reply_to_msg_id { get; set; }
public TLVector<TLAbsMessageEntity> entities { get; set; }
public void ComputeFlags()
{
flags = 0;
flags = @out ? flags | 2 : flags & ~2;
flags = mentioned ? flags | 16 : flags & ~16;
flags = media_unread ? flags | 32 : flags & ~32;
flags = silent ? flags | 8192 : flags & ~8192;
flags = fwd_from != null ? flags | 4 : flags & ~4;
flags = via_bot_id != null ? flags | 2048 : flags & ~2048;
flags = reply_to_msg_id != null ? flags | 8 : flags & ~8;
flags = entities != null ? flags | 128 : flags & ~128;
}
public override void DeserializeBody(BinaryReader br)
{
flags = br.ReadInt32();
@out = (flags & 2) != 0;
mentioned = (flags & 16) != 0;
media_unread = (flags & 32) != 0;
silent = (flags & 8192) != 0;
id = br.ReadInt32();
from_id = br.ReadInt32();
chat_id = br.ReadInt32();
message = StringUtil.Deserialize(br);
pts = br.ReadInt32();
pts_count = br.ReadInt32();
date = br.ReadInt32();
if ((flags & 4) != 0)
fwd_from = (TLMessageFwdHeader) ObjectUtils.DeserializeObject(br);
else
fwd_from = null;
if ((flags & 2048) != 0)
via_bot_id = br.ReadInt32();
else
via_bot_id = null;
if ((flags & 8) != 0)
reply_to_msg_id = br.ReadInt32();
else
reply_to_msg_id = null;
if ((flags & 128) != 0)
entities = ObjectUtils.DeserializeVector<TLAbsMessageEntity>(br);
else
entities = null;
}
public override void SerializeBody(BinaryWriter bw)
{
bw.Write(Constructor);
ComputeFlags();
bw.Write(flags);
bw.Write(id);
bw.Write(from_id);
bw.Write(chat_id);
StringUtil.Serialize(message, bw);
bw.Write(pts);
bw.Write(pts_count);
bw.Write(date);
if ((flags & 4) != 0)
ObjectUtils.SerializeObject(fwd_from, bw);
if ((flags & 2048) != 0)
bw.Write(via_bot_id.Value);
if ((flags & 8) != 0)
bw.Write(reply_to_msg_id.Value);
if ((flags & 128) != 0)
ObjectUtils.SerializeObject(entities, bw);
}
}
}