//------------------------------------------------------------------------------
//
// 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.
//
//------------------------------------------------------------------------------
#nullable enable
namespace LukeHagar.PlexAPI.SDK.Models.Requests
{
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json;
public class Bandwidth
{
///
/// The bandwidth at this time in kbps
///
[JsonProperty("bandwidth")]
public long? BandwidthValue { get; set; }
///
/// The user-friendly resolution at this time
///
[JsonProperty("resolution")]
public string? Resolution { get; set; }
///
/// Media playback time where this bandwidth started
///
[JsonProperty("time")]
public long? Time { get; set; }
}
}