mirror of
https://github.com/danog/Telegram.git
synced 2024-12-03 09:57:46 +01:00
26 lines
1.1 KiB
Objective-C
26 lines
1.1 KiB
Objective-C
#import "TLChatFull.h"
|
|
|
|
@class TLPhoto;
|
|
@class TLPeerNotifySettings;
|
|
@class TLExportedChatInvite;
|
|
|
|
//channelFull flags:# can_view_participants:flags.3?true id:int about:string participants_count:flags.0?int admins_count:flags.1?int kicked_count:flags.2?int read_inbox_max_id:int unread_count:int unread_important_count:int chat_photo:Photo notify_settings:PeerNotifySettings exported_invite:ExportedChatInvite bot_info:Vector<BotInfo> migrated_from_chat_id:flags.4?int migrated_from_max_id:flags.4?int = ChatFull;
|
|
|
|
@interface TLChatFull$channelFull : TLChatFull
|
|
|
|
@property (nonatomic) int32_t flags;
|
|
|
|
@property (nonatomic) bool canViewParticipants;
|
|
|
|
@property (nonatomic) NSString *about;
|
|
@property (nonatomic) int32_t participants_count;
|
|
@property (nonatomic) int32_t admins_count;
|
|
@property (nonatomic) int32_t kicked_count;
|
|
@property (nonatomic) int32_t read_inbox_max_id;
|
|
@property (nonatomic) int32_t unread_count;
|
|
@property (nonatomic) int32_t unread_important_count;
|
|
@property (nonatomic) int32_t migrated_from_chat_id;
|
|
@property (nonatomic) int32_t migrated_from_max_id;
|
|
|
|
@end
|