teleproto - v1.229.0
    Preparing search index...

    Interface PhoneCreateConferenceCallParams

    interface PhoneCreateConferenceCallParams {
        block?: bytes;
        join?: boolean;
        muted?: boolean;
        params?: DataJSONIn;
        publicKey?: BigInteger;
        randomId: number;
        videoStopped?: boolean;
    }
    Index
    block?: bytes

    Initial blockchain block (can only be used if join is set).

    join?: boolean

    If set, also join the call, otherwise just create the call link.

    muted?: boolean

    If set, mute our microphone when joining the call (can only be used if join is set).

    params?: DataJSONIn

    Parameters from tgcalls (can only be used if join is set).

    publicKey?: BigInteger

    Public key (can only be used if join is set).

    randomId: number

    Unique client message ID required to prevent creation of duplicate group calls.

    videoStopped?: boolean

    If set, our video stream is disabled (can only be used if join is set).