ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.487.1

This commit is contained in:
speakeasybot
2025-02-10 00:23:35 +00:00
parent d976a079a9
commit 3e00ddc6b1
172 changed files with 4640 additions and 265 deletions

View File

@@ -9,6 +9,7 @@
#nullable enable
namespace LukeHagar.PlexAPI.SDK.Models.Requests
{
using LukeHagar.PlexAPI.SDK.Models.Components;
using LukeHagar.PlexAPI.SDK.Models.Requests;
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json;
@@ -27,73 +28,80 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
/// Duration of the media in milliseconds.
/// </summary>
[JsonProperty("duration")]
public long Duration { get; set; } = default!;
public int? Duration { get; set; }
/// <summary>
/// Bitrate in bits per second.
/// </summary>
[JsonProperty("bitrate")]
public long Bitrate { get; set; } = default!;
public int? Bitrate { get; set; }
/// <summary>
/// Video width in pixels.
/// </summary>
[JsonProperty("width")]
public long Width { get; set; } = default!;
public int? Width { get; set; }
/// <summary>
/// Video height in pixels.
/// </summary>
[JsonProperty("height")]
public long Height { get; set; } = default!;
public int? Height { get; set; }
/// <summary>
/// Aspect ratio of the video.
/// </summary>
[JsonProperty("aspectRatio")]
public float AspectRatio { get; set; } = default!;
public float? AspectRatio { get; set; }
/// <summary>
/// Number of audio channels.
/// </summary>
[JsonProperty("audioChannels")]
public long AudioChannels { get; set; } = default!;
public int? AudioChannels { get; set; }
[JsonProperty("displayOffset")]
public int? DisplayOffset { get; set; }
/// <summary>
/// Audio codec used.
/// </summary>
[JsonProperty("audioCodec")]
public string AudioCodec { get; set; } = default!;
public string? AudioCodec { get; set; }
/// <summary>
/// Video codec used.
/// </summary>
[JsonProperty("videoCodec")]
public string VideoCodec { get; set; } = default!;
public string? VideoCodec { get; set; }
/// <summary>
/// Video resolution (e.g., 4k).
/// </summary>
[JsonProperty("videoResolution")]
public string VideoResolution { get; set; } = default!;
public string? VideoResolution { get; set; }
/// <summary>
/// File container type.
/// </summary>
[JsonProperty("container")]
public string Container { get; set; } = default!;
public string? Container { get; set; }
/// <summary>
/// Frame rate of the video (e.g., 24p).
/// Frame rate of the video. Values found include NTSC, PAL, 24p<br/>
///
/// <remarks>
///
/// </remarks>
/// </summary>
[JsonProperty("videoFrameRate")]
public string VideoFrameRate { get; set; } = default!;
public string? VideoFrameRate { get; set; }
/// <summary>
/// Video profile (e.g., main 10).
/// </summary>
[JsonProperty("videoProfile")]
public string VideoProfile { get; set; } = default!;
public string? VideoProfile { get; set; }
/// <summary>
/// Indicates whether voice activity is detected.
@@ -101,6 +109,21 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
[JsonProperty("hasVoiceActivity")]
public bool HasVoiceActivity { get; set; } = default!;
/// <summary>
/// The audio profile used for the media (e.g., DTS, Dolby Digital, etc.).
/// </summary>
[JsonProperty("audioProfile")]
public string? AudioProfile { get; set; }
/// <summary>
/// Has this media been optimized for streaming. NOTE: This can be 0, 1, false or true
/// </summary>
[JsonProperty("optimizedForStreaming")]
public GetMediaMetaDataOptimizedForStreaming? OptimizedForStreaming { get; set; }
[JsonProperty("has64bitOffsets")]
public bool? Has64bitOffsets { get; set; }
/// <summary>
/// An array of parts for this media item.
/// </summary>