Module tdlight.api

Class TdApi.CreateVideoChat

Enclosing class:
TdApi

public static final class TdApi.CreateVideoChat extends TdApi.Function<TdApi.GroupCallId>
Creates a video chat (a group call bound to a chat). Available only for basic groups, supergroups and channels; requires canManageVideoChats rights. Returns GroupCallId
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    long
    Identifier of a chat in which the video chat will be created.
    static final int
     
    boolean
    Pass true to create an RTMP stream instead of an ordinary video chat; requires creator privileges.
    int
    Point 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

    Constructors
    Constructor
    Description
    Creates a video chat (a group call bound to a chat).
    CreateVideoChat(long chatId, String title, int startDate, boolean isRtmpStream)
    Creates a video chat (a group call bound to a chat).
    Creates a video chat (a group call bound to a chat).
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
     
    int
     
    int
     
    void
     

    Methods inherited from class it.tdlight.jni.TdApi.Function

    toString

    Methods inherited from class it.tdlight.jni.TdApi.Object

    serialize

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Field Details

    • chatId

      public long chatId
      Identifier of a chat in which the video chat will be created.
    • title

      public String title
      Group call title; if empty, chat title will be used.
    • startDate

      public int 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

      public boolean isRtmpStream
      Pass true to create an RTMP stream instead of an ordinary video chat; requires creator privileges.
    • CONSTRUCTOR

      public static final int CONSTRUCTOR
      See Also:
  • Constructor Details

    • CreateVideoChat

      public CreateVideoChat()
      Creates a video chat (a group call bound to a chat). Available only for basic groups, supergroups and channels; requires canManageVideoChats rights. Returns GroupCallId
    • CreateVideoChat

      public CreateVideoChat(long chatId, String title, int startDate, boolean isRtmpStream)
      Creates a video chat (a group call bound to a chat). Available only for basic groups, supergroups and channels; requires canManageVideoChats rights. Returns GroupCallId
      Parameters:
      chatId - long Identifier of a chat in which the video chat will be created.
      title - String Group call title; if empty, chat title will be used.
      startDate - int 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 - boolean Pass true to create an RTMP stream instead of an ordinary video chat; requires creator privileges.
    • CreateVideoChat

      public CreateVideoChat(DataInput input) throws IOException
      Creates a video chat (a group call bound to a chat). Available only for basic groups, supergroups and channels; requires canManageVideoChats rights. Returns GroupCallId
      Throws:
      IOException
  • Method Details