Files
plexcsharp/PlexAPI/Models/Requests/TranscodeSession.cs

84 lines
2.4 KiB
C#

//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by Speakeasy (https://speakeasyapi.dev). 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 PlexAPI.Models.Requests
{
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 double? Size { get; set; }
[JsonProperty("speed")]
public double? Speed { get; set; }
[JsonProperty("error")]
public bool? Error { get; set; }
[JsonProperty("duration")]
public double? Duration { 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("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 double? 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; }
}
}