mirror of
https://github.com/LukeHagar/plexcsharp.git
synced 2025-12-06 12:37:46 +00:00
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.391.3
This commit is contained in:
90
LukeHagar/PlexAPI/SDK/Models/Requests/TranscodeSession.cs
Normal file
90
LukeHagar/PlexAPI/SDK/Models/Requests/TranscodeSession.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user