diff --git a/src/TL.Schema.cs b/src/TL.Schema.cs index 32bb1ac..267207b 100644 --- a/src/TL.Schema.cs +++ b/src/TL.Schema.cs @@ -2995,7 +2995,7 @@ namespace TL /// Peer was muted? [IfFlag(1)] public bool silent; /// Date until which all notifications shall be switched off - [IfFlag(2)] public int mute_until; + [IfFlag(2)] public DateTime mute_until; /// Identifier of an audio file to play for notifications. [IfFlag(3)] public NotificationSound sound; /// Whether story notifications should be disabled. @@ -3035,7 +3035,7 @@ namespace TL /// (Ternary value) If set, indicates whether to mute or unmute the peer; otherwise the default behavior should be used. [IfFlag(1)] public bool silent; /// Mute all notifications until this date - [IfFlag(2)] public int mute_until; + [IfFlag(2)] public DateTime mute_until; /// Notification sound for the official iOS application [IfFlag(3)] public NotificationSound ios_sound; /// Notification sound for the official android application @@ -15143,7 +15143,7 @@ namespace TL public sealed partial class EmojiStatusUntil : EmojiStatus { /// This status is valid until this date - public int until; + public DateTime until; } /// A list of emoji statuses See