ZelloChannelOptions: {
    allowAlertMessages: boolean;
    allowLocationMessages: boolean;
    allowTextMessages: boolean;
    hidePowerButton: boolean;
    listenOnly: boolean;
    noDisconnect: boolean;
}

The options of a ZelloChannel.

Type declaration

  • allowAlertMessages: boolean

    Whether the user is allowed to send alert messages to the channel. When this is true, you should not show any UI to allow the user to send alert messages to the channel.

  • allowLocationMessages: boolean

    Whether the user is allowed to send location messages to the channel. When this is true, you should not show any UI to allow the user to send location messages to the channel.

  • allowTextMessages: boolean

    Whether the user is allowed to send text messages to the channel. When this is true, you should not show any UI to allow the user to send text messages to the channel.

  • hidePowerButton: boolean

    Whether the user is allowed to change the channel's connection state. When this is true, you should not show any UI to allow the user to connect or disconnect the channel.

  • listenOnly: boolean

    Whether the user is allowed to talk on the channel. When this is true, you should not show any UI to allow the user to talk on the channel.

  • noDisconnect: boolean

    Whether the user is allowed to disconnect from the channel. When this is true, you should not show any UI to allow the user to disconnect from the channel.