//------------------------------------------------------------------------------
//
// 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 Connection
{
[JsonProperty("address")]
public string? Address { get; set; }
///
/// Indicates if the connection is the server's LAN address
///
[JsonProperty("local")]
public bool? Local { get; set; }
[JsonProperty("port")]
public long? Port { get; set; }
[JsonProperty("protocol")]
public string? Protocol { get; set; }
///
/// Indicates the connection is over a relayed connection
///
[JsonProperty("relay")]
public bool? Relay { get; set; }
[JsonProperty("uri")]
public string? Uri { get; set; }
}
}