Update API

This commit is contained in:
Ilya Laktyushin 2026-04-16 01:18:22 +02:00
parent efb1110987
commit 0df319742a
69 changed files with 12319 additions and 10209 deletions

View file

@ -500,7 +500,17 @@ public extension Message {
}
return nil
}
var guestChatAttribute: GuestChatMessageAttribute? {
for attribute in self.attributes {
if let attribute = attribute as? GuestChatMessageAttribute {
return attribute
}
}
return nil
}
}
public extension Message {
var reactionsAttribute: ReactionsMessageAttribute? {
for attribute in self.attributes {