//------------------------------------------------------------------------------
//
// 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.
//
//------------------------------------------------------------------------------
#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
{
///
/// Unique media identifier.
///
[JsonProperty("id")]
public long Id { get; set; } = default!;
///
/// Duration of the media in milliseconds.
///
[JsonProperty("duration")]
public long Duration { get; set; } = default!;
///
/// Bitrate in bits per second.
///
[JsonProperty("bitrate")]
public long Bitrate { get; set; } = default!;
///
/// Video width in pixels.
///
[JsonProperty("width")]
public long Width { get; set; } = default!;
///
/// Video height in pixels.
///
[JsonProperty("height")]
public long Height { get; set; } = default!;
///
/// Aspect ratio of the video.
///
[JsonProperty("aspectRatio")]
public float AspectRatio { get; set; } = default!;
///
/// Number of audio channels.
///
[JsonProperty("audioChannels")]
public long AudioChannels { get; set; } = default!;
///
/// Audio codec used.
///
[JsonProperty("audioCodec")]
public string AudioCodec { get; set; } = default!;
///
/// Video codec used.
///
[JsonProperty("videoCodec")]
public string VideoCodec { get; set; } = default!;
///
/// Video resolution (e.g., 4k).
///
[JsonProperty("videoResolution")]
public string VideoResolution { get; set; } = default!;
///
/// File container type.
///
[JsonProperty("container")]
public string Container { get; set; } = default!;
///
/// Frame rate of the video (e.g., 24p).
///
[JsonProperty("videoFrameRate")]
public string VideoFrameRate { get; set; } = default!;
///
/// Video profile (e.g., main 10).
///
[JsonProperty("videoProfile")]
public string VideoProfile { get; set; } = default!;
///
/// Indicates whether voice activity is detected.
///
[JsonProperty("hasVoiceActivity")]
public bool HasVoiceActivity { get; set; } = default!;
///
/// An array of parts for this media item.
///
[JsonProperty("Part")]
public List Part { get; set; } = default!;
}
}