//------------------------------------------------------------------------------
//
// 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.Components
{
using LukeHagar.PlexAPI.SDK.Models.Components;
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json;
///
/// Information about the playback session
///
public class Session
{
///
/// The bandwidth used by this client's playback in kbps
///
[JsonProperty("bandwidth")]
public long? Bandwidth { get; set; }
///
/// The id of the playback session
///
[JsonProperty("id")]
public string? Id { get; set; }
///
/// The location of the client
///
[JsonProperty("location")]
public SessionLocation? Location { get; set; }
}
}