Class CreateStreamOptions
Represents the query parameters for creating a stream.
public sealed record CreateStreamOptions : IEquatable<CreateStreamOptions>
- Inheritance
-
CreateStreamOptions
- Implements
- Inherited Members
Remarks
These options are sent as query string parameters, not as a JSON body.
Properties
ChosenAudioIndex
Gets the optional index of the chosen audio track, or null to use the default.
[QueryParameterName("chosen_audio_index")]
public int? ChosenAudioIndex { get; init; }
Property Value
- int?
ChosenResolutionIndex
Gets the optional index of the chosen resolution, or null to use the default.
[QueryParameterName("chosen_resolution_index")]
public int? ChosenResolutionIndex { get; init; }
Property Value
- int?
ChosenSubtitleIndex
Gets the optional index of the chosen subtitle track, or null to use the default.
[QueryParameterName("chosen_subtitle_index")]
public int? ChosenSubtitleIndex { get; init; }
Property Value
- int?