Class: TD::Types::Supergroup
- Defined in:
- lib/tdlib/types/supergroup.rb
Overview
Represents a supergroup or channel with zero or more members (subscribers in the case of channels). From the point of view of the system, a channel is a special kind of a supergroup: only administrators can post and see the list of members, and posts from all administrators use the name and photo of the channel instead of individual names and profile photos. Unlike supergroups, channels can have an unlimited number of subscribers.
Instance Attribute Summary collapse
-
#date ⇒ Integer
Point in time (Unix timestamp) when the current user joined, or the point in time when the supergroup or channel was created, in case the user is not a member.
-
#has_linked_chat ⇒ Boolean
True, if the channel has a discussion group, or the supergroup is the designated discussion group for a channel.
-
#has_location ⇒ Boolean
True, if the supergroup is connected to a location, i.e.
-
#id ⇒ Integer
Supergroup or channel identifier.
-
#is_channel ⇒ Boolean
True, if the supergroup is a channel.
-
#is_scam ⇒ Boolean
True, if many users reported this supergroup as a scam.
-
#is_slow_mode_enabled ⇒ Boolean
True, if the slow mode is enabled in the supergroup.
-
#is_verified ⇒ Boolean
True, if the supergroup or channel is verified.
-
#member_count ⇒ Integer
Member count; 0 if unknown.
-
#restriction_reason ⇒ String
If non-empty, contains a human-readable description of the reason why access to this supergroup or channel must be restricted.
-
#sign_messages ⇒ Boolean
True, if messages sent to the channel should contain information about the sender.
-
#status ⇒ TD::Types::ChatMemberStatus
Status of the current user in the supergroup or channel; custom title will be always empty.
-
#username ⇒ String?
Username of the supergroup or channel; empty for private supergroups or channels.
Method Summary
Methods inherited from Base
Instance Attribute Details
#date ⇒ Integer
Point in time (Unix timestamp) when the current user joined, or the point in time when the supergroup or channel was created, in case the user is not a member.
28 29 30 |
# File 'lib/tdlib/types/supergroup.rb', line 28 def date @date end |
#has_linked_chat ⇒ Boolean
True, if the channel has a discussion group, or the supergroup is the designated discussion group for a channel.
28 29 30 |
# File 'lib/tdlib/types/supergroup.rb', line 28 def has_linked_chat @has_linked_chat end |
#has_location ⇒ Boolean
True, if the supergroup is connected to a location, i.e. the supergroup is a location-based supergroup.
28 29 30 |
# File 'lib/tdlib/types/supergroup.rb', line 28 def has_location @has_location end |
#id ⇒ Integer
Supergroup or channel identifier.
28 29 30 |
# File 'lib/tdlib/types/supergroup.rb', line 28 def id @id end |
#is_channel ⇒ Boolean
True, if the supergroup is a channel.
28 29 30 |
# File 'lib/tdlib/types/supergroup.rb', line 28 def is_channel @is_channel end |
#is_scam ⇒ Boolean
True, if many users reported this supergroup as a scam.
28 29 30 |
# File 'lib/tdlib/types/supergroup.rb', line 28 def is_scam @is_scam end |
#is_slow_mode_enabled ⇒ Boolean
True, if the slow mode is enabled in the supergroup.
28 29 30 |
# File 'lib/tdlib/types/supergroup.rb', line 28 def is_slow_mode_enabled @is_slow_mode_enabled end |
#is_verified ⇒ Boolean
True, if the supergroup or channel is verified.
28 29 30 |
# File 'lib/tdlib/types/supergroup.rb', line 28 def is_verified @is_verified end |
#member_count ⇒ Integer
Member count; 0 if unknown. Currently it is guaranteed to be known only if the supergroup or channel was found through SearchPublicChats.
28 29 30 |
# File 'lib/tdlib/types/supergroup.rb', line 28 def member_count @member_count end |
#restriction_reason ⇒ String
If non-empty, contains a human-readable description of the reason why access to this supergroup or channel must be restricted.
28 29 30 |
# File 'lib/tdlib/types/supergroup.rb', line 28 def restriction_reason @restriction_reason end |
#sign_messages ⇒ Boolean
True, if messages sent to the channel should contain information about the sender. This field is only applicable to channels.
28 29 30 |
# File 'lib/tdlib/types/supergroup.rb', line 28 def @sign_messages end |
#status ⇒ TD::Types::ChatMemberStatus
Status of the current user in the supergroup or channel; custom title will be always empty.
28 29 30 |
# File 'lib/tdlib/types/supergroup.rb', line 28 def status @status end |
#username ⇒ String?
Username of the supergroup or channel; empty for private supergroups or channels.
28 29 30 |
# File 'lib/tdlib/types/supergroup.rb', line 28 def username @username end |