Inherits Function.
Invites a user to an active group call; for group calls not bound to a chat only. Sends a service message of the type messageGroupCall. The group call can have at most getOption("group_call_participant_count_max") participants.
Returns object_ptr<InviteGroupCallParticipantResult>.
Public Fields | |
int32 | group_call_id_ |
Group call identifier. | |
int53 | user_id_ |
User identifier. | |
bool | is_video_ |
Pass true if the group call is a video call. | |
Public Types | |
using | ReturnType = object_ptr< InviteGroupCallParticipantResult > |
Typedef for the type returned by the function. | |
Public Instance Methods | |
inviteGroupCallParticipant () | |
inviteGroupCallParticipant (int32 group_call_id_, int53 user_id_, bool is_video_) | |
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 = -631535414 |
Identifier uniquely determining a type of the object. | |
Default constructor for a function, which invites a user to an active group call; for group calls not bound to a chat only. Sends a service message of the type messageGroupCall. The group call can have at most getOption("group_call_participant_count_max") participants.
Returns object_ptr<InviteGroupCallParticipantResult>.
inviteGroupCallParticipant | ( | int32 | group_call_id_, |
int53 | user_id_, | ||
bool | is_video_ | ||
) |
Creates a function, which invites a user to an active group call; for group calls not bound to a chat only. Sends a service message of the type messageGroupCall. The group call can have at most getOption("group_call_participant_count_max") participants.
Returns object_ptr<InviteGroupCallParticipantResult>.
[in] | group_call_id_ | Group call identifier. |
[in] | user_id_ | User identifier. |
[in] | is_video_ | Pass true if the group call is a video call. |
|
finalvirtual |