maxSpeakerCount property

  1. @TagNumber(3)
int maxSpeakerCount

Required. Maximum number of speakers in the conversation. Valid values are: 1-6. Must be >= min_speaker_count. This range gives you more flexibility by allowing the system to automatically determine the correct number of speakers.

Implementation

@$pb.TagNumber(3)
$core.int get maxSpeakerCount => $_getIZ(1);
  1. @TagNumber(3)
void maxSpeakerCount=(int v)

Implementation

@$pb.TagNumber(3)
set maxSpeakerCount($core.int v) {
  $_setSignedInt32(1, v);
}