ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.402.14

This commit is contained in:
speakeasybot
2024-09-25 15:33:47 +00:00
parent e7023f61d0
commit 3e9ae76433
215 changed files with 4949 additions and 878 deletions

View File

@@ -9,40 +9,58 @@
#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 Part
{
[JsonProperty("id")]
public double? Id { get; set; }
public int Id { get; set; } = default!;
[JsonProperty("key")]
public string? Key { get; set; }
public string Key { get; set; } = default!;
[JsonProperty("duration")]
public double? Duration { get; set; }
public int Duration { get; set; } = default!;
[JsonProperty("file")]
public string? File { get; set; }
public string File { get; set; } = default!;
[JsonProperty("size")]
public double? Size { get; set; }
public long Size { get; set; } = default!;
/// <summary>
/// The container format of the media file.<br/>
///
/// <remarks>
///
/// </remarks>
/// </summary>
[JsonProperty("container")]
public string? Container { get; set; }
public string Container { get; set; } = default!;
[JsonProperty("audioProfile")]
public string? AudioProfile { get; set; }
[JsonProperty("has64bitOffsets")]
public bool? Has64bitOffsets { get; set; }
[JsonProperty("hasThumbnail")]
public double? HasThumbnail { get; set; }
[JsonProperty("optimizedForStreaming")]
public bool? OptimizedForStreaming { get; set; }
[JsonProperty("videoProfile")]
public string? VideoProfile { get; set; }
public string VideoProfile { get; set; } = default!;
[JsonProperty("indexes")]
public string? Indexes { get; set; }
[JsonProperty("hasThumbnail")]
public HasThumbnail? HasThumbnail { get; set; } = LukeHagar.PlexAPI.SDK.Models.Requests.HasThumbnail.False;
[JsonProperty("Stream")]
public List<Stream>? Stream { get; set; }
}
}