public static class TdApi.CreateVideoChat extends TdApi.Function<TdApi.GroupCallId>
Returns GroupCallId
| Modifier and Type | Field and Description |
|---|---|
long |
chatId
Identifier of a chat in which the video chat will be created.
|
static int |
CONSTRUCTOR
Identifier uniquely determining type of the object.
|
boolean |
isRtmpStream
Pass true to create an RTMP stream instead of an ordinary video chat.
|
int |
startDate
Point in time (Unix timestamp) when the group call is expected to be started by an administrator; 0 to start the video chat immediately.
|
java.lang.String |
title
Group call title; if empty, chat title will be used.
|
| Constructor and Description |
|---|
CreateVideoChat()
Default constructor for a function, which creates a video chat (a group call bound to a chat).
|
CreateVideoChat(long chatId,
java.lang.String title,
int startDate,
boolean isRtmpStream)
Creates a function, which creates a video chat (a group call bound to a chat).
|
| Modifier and Type | Method and Description |
|---|---|
int |
getConstructor()
Returns an identifier uniquely determining type of the object.
|
toStringpublic long chatId
public java.lang.String title
public int startDate
public boolean isRtmpStream
public static final int CONSTRUCTOR
public CreateVideoChat()
Returns GroupCallId
public CreateVideoChat(long chatId,
java.lang.String title,
int startDate,
boolean isRtmpStream)
Returns GroupCallId
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 expected 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.public int getConstructor()
TdApi.ObjectgetConstructor in class TdApi.Object