//------------------------------------------------------------------------------ // // 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 GetMediaMetaDataPart { /// /// Indicates if the part is accessible. /// [JsonProperty("accessible")] public bool? Accessible { get; set; } /// /// Indicates if the part exists. /// [JsonProperty("exists")] public bool? Exists { get; set; } /// /// Unique part identifier. /// [JsonProperty("id")] public long Id { get; set; } = default!; /// /// Key to access this part. /// [JsonProperty("key")] public string Key { get; set; } = default!; [JsonProperty("indexes")] public string? Indexes { get; set; } /// /// Duration of the part in milliseconds. /// [JsonProperty("duration")] public long Duration { get; set; } = default!; /// /// File path for the part. /// [JsonProperty("file")] public string File { get; set; } = default!; /// /// File size in bytes. /// [JsonProperty("size")] public long Size { get; set; } = default!; /// /// Container format of the part. /// [JsonProperty("container")] public string Container { get; set; } = default!; /// /// Video profile for the part. /// [JsonProperty("videoProfile")] public string VideoProfile { get; set; } = default!; /// /// An array of streams for this part. /// [JsonProperty("Stream")] public List Stream { get; set; } = default!; } }