Upgrade to layer 142: some various stuff

This commit is contained in:
Wizou 2022-05-15 00:36:28 +02:00
parent 9753b2b385
commit 90ce527f31
4 changed files with 31 additions and 4 deletions

View file

@ -4543,6 +4543,14 @@ namespace TL
revoke = revoke,
});
/// <summary><para>See <a href="https://corefork.telegram.org/method/phone.saveCallLog"/></para></summary>
public static Task<bool> Phone_SaveCallLog(this Client client, InputPhoneCall peer, InputFileBase file)
=> client.Invoke(new Phone_SaveCallLog
{
peer = peer,
file = file,
});
/// <summary>Get localization pack strings <para>See <a href="https://corefork.telegram.org/method/langpack.getLangPack"/></para> <para>Possible <see cref="RpcException"/> codes: 400 (<a href="https://corefork.telegram.org/method/langpack.getLangPack#possible-errors">details</a>)</para></summary>
/// <param name="lang_pack">Language pack name</param>
/// <param name="lang_code">Language code</param>
@ -8320,6 +8328,13 @@ namespace TL.Methods
public bool revoke;
}
[TLDef(0x41248786)]
public class Phone_SaveCallLog : IMethod<bool>
{
public InputPhoneCall peer;
public InputFileBase file;
}
[TLDef(0xF2F2330A)]
public class Langpack_GetLangPack : IMethod<LangPackDifference>
{