TLSharp/TeleSharp.TL/TL/TLPaymentCharge.cs

38 lines
818 B
C#
Raw Normal View History

using System.IO;
2017-12-20 12:06:31 +01:00
namespace TeleSharp.TL
{
[TLObject(-368917890)]
public class TLPaymentCharge : TLObject
{
public override int Constructor
{
get
{
return -368917890;
}
}
public string Id { get; set; }
2017-12-20 12:06:31 +01:00
public string ProviderChargeId { get; set; }
public void ComputeFlags()
{
}
public override void DeserializeBody(BinaryReader br)
{
Id = StringUtil.Deserialize(br);
ProviderChargeId = StringUtil.Deserialize(br);
}
public override void SerializeBody(BinaryWriter bw)
{
bw.Write(Constructor);
StringUtil.Serialize(Id, bw);
StringUtil.Serialize(ProviderChargeId, bw);
}
}
}