TL-Layer: Update To Layer 66 (#519)

* TL-Layer: Update To Layer 66
This commit is contained in:
Afshin Arani 2017-07-20 06:37:24 +04:30 committed by Andres G. Aragoneses
parent 0d55940c12
commit 133b9fdf6c
784 changed files with 17201 additions and 10048 deletions

View file

@ -7,7 +7,7 @@ using System.Threading.Tasks;
using TeleSharp.TL;
namespace TeleSharp.TL
{
[TLObject(1356369070)]
[TLObject(1356369070)]
public class TLInputMediaUploadedThumbDocument : TLAbsInputMedia
{
public override int Constructor
@ -18,50 +18,50 @@ namespace TeleSharp.TL
}
}
public int flags {get;set;}
public TLAbsInputFile file {get;set;}
public TLAbsInputFile thumb {get;set;}
public string mime_type {get;set;}
public TLVector<TLAbsDocumentAttribute> attributes {get;set;}
public string caption {get;set;}
public TLVector<TLAbsInputDocument> stickers {get;set;}
public int flags { get; set; }
public TLAbsInputFile file { get; set; }
public TLAbsInputFile thumb { get; set; }
public string mime_type { get; set; }
public TLVector<TLAbsDocumentAttribute> attributes { get; set; }
public string caption { get; set; }
public TLVector<TLAbsInputDocument> stickers { get; set; }
public void ComputeFlags()
{
flags = 0;
flags = stickers != null ? (flags | 1) : (flags & ~1);
public void ComputeFlags()
{
flags = 0;
flags = stickers != null ? (flags | 1) : (flags & ~1);
}
}
public override void DeserializeBody(BinaryReader br)
{
flags = br.ReadInt32();
file = (TLAbsInputFile)ObjectUtils.DeserializeObject(br);
thumb = (TLAbsInputFile)ObjectUtils.DeserializeObject(br);
mime_type = StringUtil.Deserialize(br);
attributes = (TLVector<TLAbsDocumentAttribute>)ObjectUtils.DeserializeVector<TLAbsDocumentAttribute>(br);
caption = StringUtil.Deserialize(br);
if ((flags & 1) != 0)
stickers = (TLVector<TLAbsInputDocument>)ObjectUtils.DeserializeVector<TLAbsInputDocument>(br);
else
stickers = null;
file = (TLAbsInputFile)ObjectUtils.DeserializeObject(br);
thumb = (TLAbsInputFile)ObjectUtils.DeserializeObject(br);
mime_type = StringUtil.Deserialize(br);
attributes = (TLVector<TLAbsDocumentAttribute>)ObjectUtils.DeserializeVector<TLAbsDocumentAttribute>(br);
caption = StringUtil.Deserialize(br);
if ((flags & 1) != 0)
stickers = (TLVector<TLAbsInputDocument>)ObjectUtils.DeserializeVector<TLAbsInputDocument>(br);
else
stickers = null;
}
public override void SerializeBody(BinaryWriter bw)
{
bw.Write(Constructor);
bw.Write(Constructor);
ComputeFlags();
bw.Write(flags);
ObjectUtils.SerializeObject(file,bw);
ObjectUtils.SerializeObject(thumb,bw);
StringUtil.Serialize(mime_type,bw);
ObjectUtils.SerializeObject(attributes,bw);
StringUtil.Serialize(caption,bw);
if ((flags & 1) != 0)
ObjectUtils.SerializeObject(stickers,bw);
bw.Write(flags);
ObjectUtils.SerializeObject(file, bw);
ObjectUtils.SerializeObject(thumb, bw);
StringUtil.Serialize(mime_type, bw);
ObjectUtils.SerializeObject(attributes, bw);
StringUtil.Serialize(caption, bw);
if ((flags & 1) != 0)
ObjectUtils.SerializeObject(stickers, bw);
}
}