Inherits Object.
Describes a video chat, i.e. a group call bound to a chat.
Public Fields | |
int32 | group_call_id_ |
Group call identifier of an active video chat; 0 if none. Full information about the video chat can be received through the method getGroupCall. | |
bool | has_participants_ |
True, if the video chat has participants. | |
object_ptr< MessageSender > | default_participant_id_ |
Default group call participant identifier to join the video chat; may be null. | |
Public Instance Methods | |
videoChat () | |
videoChat (int32 group_call_id_, bool has_participants_, object_ptr< MessageSender > &&default_participant_id_) | |
void | store (TlStorerToString &s, const char *field_name) const final |
![]() | |
virtual void | store (TlStorerUnsafe &s) const |
virtual void | store (TlStorerCalcLength &s) const |
TlObject ()=default | |
TlObject (const TlObject &)=delete | |
TlObject & | operator= (const TlObject &)=delete |
TlObject (TlObject &&)=default | |
TlObject & | operator= (TlObject &&)=default |
virtual | ~TlObject ()=default |
Static Public Attributes | |
static const std::int32_t | ID = -1374319320 |
Identifier uniquely determining a type of the object. | |
videoChat | ( | ) |
Describes a video chat, i.e. a group call bound to a chat.
videoChat | ( | int32 | group_call_id_, |
bool | has_participants_, | ||
object_ptr< MessageSender > && | default_participant_id_ | ||
) |
Describes a video chat, i.e. a group call bound to a chat.
[in] | group_call_id_ | Group call identifier of an active video chat; 0 if none. Full information about the video chat can be received through the method getGroupCall. |
[in] | has_participants_ | True, if the video chat has participants. |
[in] | default_participant_id_ | Default group call participant identifier to join the video chat; may be null. |
|
finalvirtual |