Class GetStreamDataOptions
Represents the query parameters for getting stream data.
public sealed record GetStreamDataOptions : IEquatable<GetStreamDataOptions>
- Inheritance
-
GetStreamDataOptions
- 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?