ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.487.0

This commit is contained in:
speakeasybot
2025-02-07 00:22:51 +00:00
parent b10d5f7023
commit d976a079a9
144 changed files with 2876 additions and 988 deletions

View File

@@ -0,0 +1,110 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
//
// Changes to this file may cause incorrect behavior and will be lost when
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
#nullable enable
namespace LukeHagar.PlexAPI.SDK.Models.Requests
{
using LukeHagar.PlexAPI.SDK.Models.Requests;
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json;
using System.Collections.Generic;
public class GetMediaMetaDataMedia
{
/// <summary>
/// Unique media identifier.
/// </summary>
[JsonProperty("id")]
public long Id { get; set; } = default!;
/// <summary>
/// Duration of the media in milliseconds.
/// </summary>
[JsonProperty("duration")]
public long Duration { get; set; } = default!;
/// <summary>
/// Bitrate in bits per second.
/// </summary>
[JsonProperty("bitrate")]
public long Bitrate { get; set; } = default!;
/// <summary>
/// Video width in pixels.
/// </summary>
[JsonProperty("width")]
public long Width { get; set; } = default!;
/// <summary>
/// Video height in pixels.
/// </summary>
[JsonProperty("height")]
public long Height { get; set; } = default!;
/// <summary>
/// Aspect ratio of the video.
/// </summary>
[JsonProperty("aspectRatio")]
public float AspectRatio { get; set; } = default!;
/// <summary>
/// Number of audio channels.
/// </summary>
[JsonProperty("audioChannels")]
public long AudioChannels { get; set; } = default!;
/// <summary>
/// Audio codec used.
/// </summary>
[JsonProperty("audioCodec")]
public string AudioCodec { get; set; } = default!;
/// <summary>
/// Video codec used.
/// </summary>
[JsonProperty("videoCodec")]
public string VideoCodec { get; set; } = default!;
/// <summary>
/// Video resolution (e.g., 4k).
/// </summary>
[JsonProperty("videoResolution")]
public string VideoResolution { get; set; } = default!;
/// <summary>
/// File container type.
/// </summary>
[JsonProperty("container")]
public string Container { get; set; } = default!;
/// <summary>
/// Frame rate of the video (e.g., 24p).
/// </summary>
[JsonProperty("videoFrameRate")]
public string VideoFrameRate { get; set; } = default!;
/// <summary>
/// Video profile (e.g., main 10).
/// </summary>
[JsonProperty("videoProfile")]
public string VideoProfile { get; set; } = default!;
/// <summary>
/// Indicates whether voice activity is detected.
/// </summary>
[JsonProperty("hasVoiceActivity")]
public bool HasVoiceActivity { get; set; } = default!;
/// <summary>
/// An array of parts for this media item.
/// </summary>
[JsonProperty("Part")]
public List<GetMediaMetaDataPart> Part { get; set; } = default!;
}
}