ci: regenerated with OpenAPI Doc 0.0.3, Speakeasy CLI 1.148.0

This commit is contained in:
speakeasybot
2024-01-22 17:16:35 +00:00
parent 0c390dec3b
commit 6812a51128
285 changed files with 5715 additions and 930 deletions

View File

@@ -0,0 +1,78 @@
//------------------------------------------------------------------------------
// <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 GetSessionsStream
{
[JsonProperty("albumGain")]
public string? AlbumGain { get; set; }
[JsonProperty("albumPeak")]
public string? AlbumPeak { get; set; }
[JsonProperty("albumRange")]
public string? AlbumRange { get; set; }
[JsonProperty("audioChannelLayout")]
public string? AudioChannelLayout { get; set; }
[JsonProperty("bitDepth")]
public int? BitDepth { get; set; }
[JsonProperty("bitrate")]
public int? Bitrate { get; set; }
[JsonProperty("channels")]
public int? Channels { get; set; }
[JsonProperty("codec")]
public string? Codec { get; set; }
[JsonProperty("displayTitle")]
public string? DisplayTitle { get; set; }
[JsonProperty("extendedDisplayTitle")]
public string? ExtendedDisplayTitle { get; set; }
[JsonProperty("gain")]
public string? Gain { get; set; }
[JsonProperty("id")]
public string? Id { get; set; }
[JsonProperty("index")]
public int? Index { get; set; }
[JsonProperty("loudness")]
public string? Loudness { get; set; }
[JsonProperty("lra")]
public string? Lra { get; set; }
[JsonProperty("peak")]
public string? Peak { get; set; }
[JsonProperty("samplingRate")]
public int? SamplingRate { get; set; }
[JsonProperty("selected")]
public bool? Selected { get; set; }
[JsonProperty("streamType")]
public int? StreamType { get; set; }
[JsonProperty("location")]
public string? Location { get; set; }
}
}