Package org.drinkless.tdlib
Class TdApi.CreateVideoChat
- Enclosing class:
- TdApi
Creates a video chat (a group call bound to a chat). Available only for basic groups, supergroups and channels; requires canManageVideoChats administrator right.
Returns GroupCallId
-
Nested Class Summary
Nested classes/interfaces inherited from class org.drinkless.tdlib.TdApi.Function
TdApi.Function.Constructors -
Field Summary
FieldsModifier and TypeFieldDescriptionlongIdentifier of a chat in which the video chat will be created.static final intIdentifier uniquely determining type of the object.booleanPass true to create an RTMP stream instead of an ordinary video chat; requires owner privileges.intPoint in time (Unix timestamp) when the group call is supposed to be started by an administrator; 0 to start the video chat immediately.Group call title; if empty, chat title will be used. -
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor for a function, which creates a video chat (a group call bound to a chat).CreateVideoChat(long chatId, String title, int startDate, boolean isRtmpStream) Creates a function, which creates a video chat (a group call bound to a chat). -
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
-
chatId
public long chatIdIdentifier of a chat in which the video chat will be created. -
title
Group call title; if empty, chat title will be used. -
startDate
public int startDatePoint in time (Unix timestamp) when the group call is supposed to be started by an administrator; 0 to start the video chat immediately. The date must be at least 10 seconds and at most 8 days in the future. -
isRtmpStream
public boolean isRtmpStreamPass true to create an RTMP stream instead of an ordinary video chat; requires owner privileges. -
CONSTRUCTOR
public static final int CONSTRUCTORIdentifier uniquely determining type of the object.- See Also:
-
-
Constructor Details
-
CreateVideoChat
public CreateVideoChat()Default constructor for a function, which creates a video chat (a group call bound to a chat). Available only for basic groups, supergroups and channels; requires canManageVideoChats administrator right.Returns
GroupCallId -
CreateVideoChat
Creates a function, which creates a video chat (a group call bound to a chat). Available only for basic groups, supergroups and channels; requires canManageVideoChats administrator right.Returns
GroupCallId- Parameters:
chatId- Identifier of a chat in which the video chat will be created.title- Group call title; if empty, chat title will be used.startDate- Point in time (Unix timestamp) when the group call is supposed to be started by an administrator; 0 to start the video chat immediately. The date must be at least 10 seconds and at most 8 days in the future.isRtmpStream- Pass true to create an RTMP stream instead of an ordinary video chat; requires owner privileges.
-
-
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.GroupCallId>- Returns:
- this.CONSTRUCTOR
-