Package org.drinkless.tdlib
Class TdApi.InviteGroupCallParticipants
- Enclosing class:
- TdApi
Invites users to an active group call. Sends a service message of type messageInviteVideoChatParticipants for video chats.
Returns Ok
-
Nested Class Summary
Nested classes/interfaces inherited from class org.drinkless.tdlib.TdApi.Function
TdApi.Function.Constructors -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intIdentifier uniquely determining type of the object.intGroup call identifier.long[]User identifiers. -
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor for a function, which invites users to an active group call.InviteGroupCallParticipants(int groupCallId, long[] userIds) Creates a function, which invites users to an active group call. -
Method Summary
Modifier and TypeMethodDescriptionintReturns an identifier uniquely determining type of the object.Methods inherited from class org.drinkless.tdlib.TdApi.Function
toString
-
Field Details
-
groupCallId
public int groupCallIdGroup call identifier. -
userIds
public long[] userIdsUser identifiers. At most 10 users can be invited simultaneously. -
CONSTRUCTOR
public static final int CONSTRUCTORIdentifier uniquely determining type of the object.- See Also:
-
-
Constructor Details
-
InviteGroupCallParticipants
public InviteGroupCallParticipants()Default constructor for a function, which invites users to an active group call. Sends a service message of type messageInviteVideoChatParticipants for video chats.Returns
Ok -
InviteGroupCallParticipants
public InviteGroupCallParticipants(int groupCallId, long[] userIds) Creates a function, which invites users to an active group call. Sends a service message of type messageInviteVideoChatParticipants for video chats.Returns
Ok- Parameters:
groupCallId- Group call identifier.userIds- User identifiers. At most 10 users can be invited simultaneously.
-
-
Method Details
-
getConstructor
public int getConstructor()Description copied from class:TdApi.ObjectReturns an identifier uniquely determining type of the object.- Specified by:
getConstructorin classTdApi.Function<TdApi.Ok>- Returns:
- this.CONSTRUCTOR
-