Package org.drinkless.tdlib
Class TdApi.GroupCallJoinParameters
java.lang.Object
org.drinkless.tdlib.TdApi.Object
org.drinkless.tdlib.TdApi.GroupCallJoinParameters
- Enclosing class:
- TdApi
Describes parameters used to join a group call.
-
Field Summary
FieldsModifier and TypeFieldDescriptionint
Audio channel synchronization source identifier; received from tgcalls.static final int
Identifier uniquely determining type of the object.boolean
Pass true to join the call with muted microphone.boolean
Pass true if the user's video is enabled.Group call join payload; received from tgcalls. -
Constructor Summary
ConstructorsConstructorDescriptionDescribes parameters used to join a group call.GroupCallJoinParameters
(int audioSourceId, String payload, boolean isMuted, boolean isMyVideoEnabled) Describes parameters used to join a group call. -
Method Summary
Modifier and TypeMethodDescriptionint
Returns an identifier uniquely determining type of the object.Methods inherited from class org.drinkless.tdlib.TdApi.Object
toString
-
Field Details
-
audioSourceId
public int audioSourceIdAudio channel synchronization source identifier; received from tgcalls. -
payload
Group call join payload; received from tgcalls. -
isMuted
public boolean isMutedPass true to join the call with muted microphone. -
isMyVideoEnabled
public boolean isMyVideoEnabledPass true if the user's video is enabled. -
CONSTRUCTOR
public static final int CONSTRUCTORIdentifier uniquely determining type of the object.- See Also:
-
-
Constructor Details
-
GroupCallJoinParameters
public GroupCallJoinParameters()Describes parameters used to join a group call. -
GroupCallJoinParameters
public GroupCallJoinParameters(int audioSourceId, String payload, boolean isMuted, boolean isMyVideoEnabled) Describes parameters used to join a group call.- Parameters:
audioSourceId
- Audio channel synchronization source identifier; received from tgcalls.payload
- Group call join payload; received from tgcalls.isMuted
- Pass true to join the call with muted microphone.isMyVideoEnabled
- Pass true if the user's video is enabled.
-
-
Method Details
-
getConstructor
public int getConstructor()Description copied from class:TdApi.Object
Returns an identifier uniquely determining type of the object.- Specified by:
getConstructor
in classTdApi.Object
- Returns:
- this.CONSTRUCTOR
-