-
Notifications
You must be signed in to change notification settings - Fork 2
RecordingOptions
Lejla Solak edited this page Sep 22, 2023
·
4 revisions
Creates a builder instance used to build a new instance of RecordingOptions
.
none
-
RecordingOptions.Builder
- Instance of the builder.
RecordingOptions.Builder recordingOptionsBuilder = RecordingOptions.builder();
Getter for the recordingType
field.
none
-
RecordingType
- Value of therecordingType
field representing recording type preference.
RecordingOptions recordingOptions = RecordingOptions.builder().recordingType(RecordingType.AUDIO).build();
RecordingType recordingType = recordingOptions.getRecordingType();
Setter for the recordingType
field.
-
recordingType
:RecordingType
- Optional string type literal representing recording type preference. Default value isUNDEFINED
.
-
RecordingOptions.Builder
- Instance of the builder.
RecordingOptions.Builder recordingOptionsBuilder = RecordingOptions.builder().recordingType(RecordingType.AUDIO);
Builds a new instance of the RecordingOptions
.
none
-
RecordingOptions
- Instance of theRecordingOptions
.
RecordingOptions.Builder recordingOptionsBuilder = RecordingOptions.builder();
RecordingOptions recordingOptions = recordingOptionsBuilder.build();