ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.391.3

This commit is contained in:
speakeasybot
2024-09-06 17:13:00 +00:00
parent 2bed38d2cb
commit d077d5e9f0
610 changed files with 4195 additions and 3384 deletions

View File

@@ -0,0 +1,90 @@
//------------------------------------------------------------------------------
// <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.Utils;
using Newtonsoft.Json;
public class TranscodeSession
{
[JsonProperty("key")]
public string? Key { get; set; }
[JsonProperty("throttled")]
public bool? Throttled { get; set; }
[JsonProperty("complete")]
public bool? Complete { get; set; }
[JsonProperty("progress")]
public double? Progress { get; set; }
[JsonProperty("size")]
public int? Size { get; set; }
[JsonProperty("speed")]
public double? Speed { get; set; }
[JsonProperty("error")]
public bool? Error { get; set; }
[JsonProperty("duration")]
public int? Duration { get; set; }
[JsonProperty("remaining")]
public int? Remaining { get; set; }
[JsonProperty("context")]
public string? Context { get; set; }
[JsonProperty("sourceVideoCodec")]
public string? SourceVideoCodec { get; set; }
[JsonProperty("sourceAudioCodec")]
public string? SourceAudioCodec { get; set; }
[JsonProperty("videoDecision")]
public string? VideoDecision { get; set; }
[JsonProperty("audioDecision")]
public string? AudioDecision { get; set; }
[JsonProperty("subtitleDecision")]
public string? SubtitleDecision { get; set; }
[JsonProperty("protocol")]
public string? Protocol { get; set; }
[JsonProperty("container")]
public string? Container { get; set; }
[JsonProperty("videoCodec")]
public string? VideoCodec { get; set; }
[JsonProperty("audioCodec")]
public string? AudioCodec { get; set; }
[JsonProperty("audioChannels")]
public int? AudioChannels { get; set; }
[JsonProperty("transcodeHwRequested")]
public bool? TranscodeHwRequested { get; set; }
[JsonProperty("timeStamp")]
public double? TimeStamp { get; set; }
[JsonProperty("maxOffsetAvailable")]
public double? MaxOffsetAvailable { get; set; }
[JsonProperty("minOffsetAvailable")]
public double? MinOffsetAvailable { get; set; }
}
}