Package org.drinkless.tdlib
Class TdApi.InternalLinkTypeVideoChat
- java.lang.Object
-
- org.drinkless.tdlib.TdApi.Object
-
- org.drinkless.tdlib.TdApi.InternalLinkType
-
- org.drinkless.tdlib.TdApi.InternalLinkTypeVideoChat
-
- Enclosing class:
- TdApi
public static class TdApi.InternalLinkTypeVideoChat extends TdApi.InternalLinkType
The link is a link to a video chat. Call searchPublicChat with the given chat username, and then joinGoupCall with the given invite hash to process the link.
-
-
Field Summary
Fields Modifier and Type Field Description StringchatUsernameUsername of the chat with the video chat.static intCONSTRUCTORIdentifier uniquely determining type of the object.StringinviteHashIf non-empty, invite hash to be used to join the video chat without being muted by administrators.booleanisLiveStreamTrue, if the video chat is expected to be a live stream in a channel or a broadcast group.
-
Constructor Summary
Constructors Constructor Description InternalLinkTypeVideoChat()The link is a link to a video chat.InternalLinkTypeVideoChat(String chatUsername, String inviteHash, boolean isLiveStream)The link is a link to a video chat.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetConstructor()-
Methods inherited from class org.drinkless.tdlib.TdApi.Object
toString
-
-
-
-
Field Detail
-
chatUsername
public String chatUsername
Username of the chat with the video chat.
-
inviteHash
public String inviteHash
If non-empty, invite hash to be used to join the video chat without being muted by administrators.
-
isLiveStream
public boolean isLiveStream
True, if the video chat is expected to be a live stream in a channel or a broadcast group.
-
CONSTRUCTOR
public static final int CONSTRUCTOR
Identifier uniquely determining type of the object.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
InternalLinkTypeVideoChat
public InternalLinkTypeVideoChat()
The link is a link to a video chat. Call searchPublicChat with the given chat username, and then joinGoupCall with the given invite hash to process the link.
-
InternalLinkTypeVideoChat
public InternalLinkTypeVideoChat(String chatUsername, String inviteHash, boolean isLiveStream)
The link is a link to a video chat. Call searchPublicChat with the given chat username, and then joinGoupCall with the given invite hash to process the link.- Parameters:
chatUsername- Username of the chat with the video chat.inviteHash- If non-empty, invite hash to be used to join the video chat without being muted by administrators.isLiveStream- True, if the video chat is expected to be a live stream in a channel or a broadcast group.
-
-
Method Detail
-
getConstructor
public int getConstructor()
- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-
-