ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.391.3

This commit is contained in:
speakeasybot
2024-09-06 17:13:00 +00:00
parent 2bed38d2cb
commit d077d5e9f0
610 changed files with 4195 additions and 3384 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -12,7 +12,7 @@ generation:
auth: auth:
oAuth2ClientCredentialsEnabled: true oAuth2ClientCredentialsEnabled: true
csharp: csharp:
version: 0.5.0 version: 0.5.1
additionalDependencies: [] additionalDependencies: []
author: LukeHagar author: LukeHagar
clientServerStatusCodesAsErrors: true clientServerStatusCodesAsErrors: true

View File

@@ -1,8 +1,8 @@
speakeasyVersion: 1.390.7 speakeasyVersion: 1.391.3
sources: sources:
my-source: my-source:
sourceNamespace: my-source sourceNamespace: my-source
sourceRevisionDigest: sha256:b6aa1692c74a84d3ce118d305f77944189e0749c6f95a2c57bddb8c606ab8df6 sourceRevisionDigest: sha256:674cfdd3e98489e023ae9a80ff8753f30d1b6f625d25bd11b9897875477a4392
sourceBlobDigest: sha256:370cb4409748c4811372a81d94f1a84f60b538087c23f2cb24f72082bcc827f6 sourceBlobDigest: sha256:370cb4409748c4811372a81d94f1a84f60b538087c23f2cb24f72082bcc827f6
tags: tags:
- latest - latest
@@ -11,7 +11,7 @@ targets:
plexcsharp: plexcsharp:
source: my-source source: my-source
sourceNamespace: my-source sourceNamespace: my-source
sourceRevisionDigest: sha256:b6aa1692c74a84d3ce118d305f77944189e0749c6f95a2c57bddb8c606ab8df6 sourceRevisionDigest: sha256:674cfdd3e98489e023ae9a80ff8753f30d1b6f625d25bd11b9897875477a4392
sourceBlobDigest: sha256:370cb4409748c4811372a81d94f1a84f60b538087c23f2cb24f72082bcc827f6 sourceBlobDigest: sha256:370cb4409748c4811372a81d94f1a84f60b538087c23f2cb24f72082bcc827f6
outLocation: /github/workspace/repo outLocation: /github/workspace/repo
workflow: workflow:

View File

@@ -1,6 +1,6 @@
Microsoft Visual Studio Solution File, Format Version 12.00 Microsoft Visual Studio Solution File, Format Version 12.00
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PlexAPI", "PlexAPI\PlexAPI.csproj", "{F0CE92B5-F3CC-45A2-AA83-118C38724EB1}" Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LukeHagar.PlexAPI.SDK", "LukeHagar\PlexAPI\SDK\LukeHagar.PlexAPI.SDK.csproj", "{F0CE92B5-F3CC-45A2-AA83-118C38724EB1}"
EndProject EndProject
Global Global

View File

@@ -7,15 +7,15 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI namespace LukeHagar.PlexAPI.SDK
{ {
using LukeHagar.PlexAPI.SDK.Hooks;
using LukeHagar.PlexAPI.SDK.Models.Components;
using LukeHagar.PlexAPI.SDK.Models.Errors;
using LukeHagar.PlexAPI.SDK.Models.Requests;
using LukeHagar.PlexAPI.SDK.Utils.Retries;
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Hooks;
using PlexAPI.Models.Components;
using PlexAPI.Models.Errors;
using PlexAPI.Models.Requests;
using PlexAPI.Utils.Retries;
using PlexAPI.Utils;
using System.Collections.Generic; using System.Collections.Generic;
using System.Net.Http.Headers; using System.Net.Http.Headers;
using System.Net.Http; using System.Net.Http;
@@ -74,15 +74,15 @@ namespace PlexAPI
{ {
public SDKConfig SDKConfiguration { get; private set; } public SDKConfig SDKConfiguration { get; private set; }
private const string _language = "csharp"; private const string _language = "csharp";
private const string _sdkVersion = "0.5.0"; private const string _sdkVersion = "0.5.1";
private const string _sdkGenVersion = "2.409.8"; private const string _sdkGenVersion = "2.411.5";
private const string _openapiDocVersion = "0.0.3"; private const string _openapiDocVersion = "0.0.3";
private const string _userAgent = "speakeasy-sdk/csharp 0.5.0 2.409.8 0.0.3 PlexAPI"; private const string _userAgent = "speakeasy-sdk/csharp 0.5.1 2.411.5 0.0.3 LukeHagar.PlexAPI.SDK";
private string _serverUrl = ""; private string _serverUrl = "";
private ISpeakeasyHttpClient _client; private ISpeakeasyHttpClient _client;
private Func<PlexAPI.Models.Components.Security>? _securitySource; private Func<LukeHagar.PlexAPI.SDK.Models.Components.Security>? _securitySource;
public Activities(ISpeakeasyHttpClient client, Func<PlexAPI.Models.Components.Security>? securitySource, string serverUrl, SDKConfig config) public Activities(ISpeakeasyHttpClient client, Func<LukeHagar.PlexAPI.SDK.Models.Components.Security>? securitySource, string serverUrl, SDKConfig config)
{ {
_client = client; _client = client;
_securitySource = securitySource; _securitySource = securitySource;

View File

@@ -7,15 +7,15 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI namespace LukeHagar.PlexAPI.SDK
{ {
using LukeHagar.PlexAPI.SDK.Hooks;
using LukeHagar.PlexAPI.SDK.Models.Components;
using LukeHagar.PlexAPI.SDK.Models.Errors;
using LukeHagar.PlexAPI.SDK.Models.Requests;
using LukeHagar.PlexAPI.SDK.Utils.Retries;
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Hooks;
using PlexAPI.Models.Components;
using PlexAPI.Models.Errors;
using PlexAPI.Models.Requests;
using PlexAPI.Utils.Retries;
using PlexAPI.Utils;
using System.Collections.Generic; using System.Collections.Generic;
using System.Net.Http.Headers; using System.Net.Http.Headers;
using System.Net.Http; using System.Net.Http;
@@ -95,15 +95,15 @@ namespace PlexAPI
}; };
public SDKConfig SDKConfiguration { get; private set; } public SDKConfig SDKConfiguration { get; private set; }
private const string _language = "csharp"; private const string _language = "csharp";
private const string _sdkVersion = "0.5.0"; private const string _sdkVersion = "0.5.1";
private const string _sdkGenVersion = "2.409.8"; private const string _sdkGenVersion = "2.411.5";
private const string _openapiDocVersion = "0.0.3"; private const string _openapiDocVersion = "0.0.3";
private const string _userAgent = "speakeasy-sdk/csharp 0.5.0 2.409.8 0.0.3 PlexAPI"; private const string _userAgent = "speakeasy-sdk/csharp 0.5.1 2.411.5 0.0.3 LukeHagar.PlexAPI.SDK";
private string _serverUrl = ""; private string _serverUrl = "";
private ISpeakeasyHttpClient _client; private ISpeakeasyHttpClient _client;
private Func<PlexAPI.Models.Components.Security>? _securitySource; private Func<LukeHagar.PlexAPI.SDK.Models.Components.Security>? _securitySource;
public Authentication(ISpeakeasyHttpClient client, Func<PlexAPI.Models.Components.Security>? securitySource, string serverUrl, SDKConfig config) public Authentication(ISpeakeasyHttpClient client, Func<LukeHagar.PlexAPI.SDK.Models.Components.Security>? securitySource, string serverUrl, SDKConfig config)
{ {
_client = client; _client = client;
_securitySource = securitySource; _securitySource = securitySource;

View File

@@ -7,15 +7,15 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI namespace LukeHagar.PlexAPI.SDK
{ {
using LukeHagar.PlexAPI.SDK.Hooks;
using LukeHagar.PlexAPI.SDK.Models.Components;
using LukeHagar.PlexAPI.SDK.Models.Errors;
using LukeHagar.PlexAPI.SDK.Models.Requests;
using LukeHagar.PlexAPI.SDK.Utils.Retries;
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Hooks;
using PlexAPI.Models.Components;
using PlexAPI.Models.Errors;
using PlexAPI.Models.Requests;
using PlexAPI.Utils.Retries;
using PlexAPI.Utils;
using System.Collections.Generic; using System.Collections.Generic;
using System.Net.Http.Headers; using System.Net.Http.Headers;
using System.Net.Http; using System.Net.Http;
@@ -101,15 +101,15 @@ namespace PlexAPI
{ {
public SDKConfig SDKConfiguration { get; private set; } public SDKConfig SDKConfiguration { get; private set; }
private const string _language = "csharp"; private const string _language = "csharp";
private const string _sdkVersion = "0.5.0"; private const string _sdkVersion = "0.5.1";
private const string _sdkGenVersion = "2.409.8"; private const string _sdkGenVersion = "2.411.5";
private const string _openapiDocVersion = "0.0.3"; private const string _openapiDocVersion = "0.0.3";
private const string _userAgent = "speakeasy-sdk/csharp 0.5.0 2.409.8 0.0.3 PlexAPI"; private const string _userAgent = "speakeasy-sdk/csharp 0.5.1 2.411.5 0.0.3 LukeHagar.PlexAPI.SDK";
private string _serverUrl = ""; private string _serverUrl = "";
private ISpeakeasyHttpClient _client; private ISpeakeasyHttpClient _client;
private Func<PlexAPI.Models.Components.Security>? _securitySource; private Func<LukeHagar.PlexAPI.SDK.Models.Components.Security>? _securitySource;
public Butler(ISpeakeasyHttpClient client, Func<PlexAPI.Models.Components.Security>? securitySource, string serverUrl, SDKConfig config) public Butler(ISpeakeasyHttpClient client, Func<LukeHagar.PlexAPI.SDK.Models.Components.Security>? securitySource, string serverUrl, SDKConfig config)
{ {
_client = client; _client = client;
_securitySource = securitySource; _securitySource = securitySource;

View File

@@ -0,0 +1,36 @@
namespace LukeHagar.PlexAPI.SDK.Hooks
{
/// <summary>
/// Hook Registration File.
/// </summary>
/// <remarks>
/// This file is only ever generated once on the first generation and then is free to be modified.
/// Any hooks you wish to add should be registered in the InitHooks function. Feel free to define them
/// in this file or in separate files in the Hooks folder.
/// </remarks>
public static class HookRegistration
{
/// <summary>
/// Initializes hooks.
/// </summary>
/// <remarks>
/// Add hooks by calling `LukeHagar.PlexAPI.SDK.Hooks.Register&lt;HookInterface&gt;(myHook);`
/// where `I&lt;HookInterface&gt;` is one of the following interfaces defined in HookTypes.cs:
/// - ISDKInitHook
/// - IBeforeRequestHook
/// - IAfterSuccess
/// - IAfterError
/// and `myHook` an instance that implements that specific interface.
/// </remarks>
public static void InitHooks(IHooks hooks)
{
// var myHook = new MyHook();
// hooks.RegisterSDKInitHook(myHook);
// hooks.RegisterBeforeRequestHook(myHook);
// hooks.RegisterAfterSuccessHook(myHook);
// hooks.RegisterAfterErrorHook(myHook;
}
}
}

View File

@@ -7,13 +7,13 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Hooks namespace LukeHagar.PlexAPI.SDK.Hooks
{ {
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Net.Http; using System.Net.Http;
using System.Threading.Tasks; using System.Threading.Tasks;
using PlexAPI.Utils; using LukeHagar.PlexAPI.SDK.Utils;
public class HookContext public class HookContext
{ {

View File

@@ -7,9 +7,9 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Hooks namespace LukeHagar.PlexAPI.SDK.Hooks
{ {
using PlexAPI.Utils; using LukeHagar.PlexAPI.SDK.Utils;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Net.Http; using System.Net.Http;

View File

@@ -7,15 +7,15 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI namespace LukeHagar.PlexAPI.SDK
{ {
using LukeHagar.PlexAPI.SDK.Hooks;
using LukeHagar.PlexAPI.SDK.Models.Components;
using LukeHagar.PlexAPI.SDK.Models.Errors;
using LukeHagar.PlexAPI.SDK.Models.Requests;
using LukeHagar.PlexAPI.SDK.Utils.Retries;
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Hooks;
using PlexAPI.Models.Components;
using PlexAPI.Models.Errors;
using PlexAPI.Models.Requests;
using PlexAPI.Utils.Retries;
using PlexAPI.Utils;
using System.Collections.Generic; using System.Collections.Generic;
using System.Net.Http.Headers; using System.Net.Http.Headers;
using System.Net.Http; using System.Net.Http;
@@ -63,15 +63,15 @@ namespace PlexAPI
{ {
public SDKConfig SDKConfiguration { get; private set; } public SDKConfig SDKConfiguration { get; private set; }
private const string _language = "csharp"; private const string _language = "csharp";
private const string _sdkVersion = "0.5.0"; private const string _sdkVersion = "0.5.1";
private const string _sdkGenVersion = "2.409.8"; private const string _sdkGenVersion = "2.411.5";
private const string _openapiDocVersion = "0.0.3"; private const string _openapiDocVersion = "0.0.3";
private const string _userAgent = "speakeasy-sdk/csharp 0.5.0 2.409.8 0.0.3 PlexAPI"; private const string _userAgent = "speakeasy-sdk/csharp 0.5.1 2.411.5 0.0.3 LukeHagar.PlexAPI.SDK";
private string _serverUrl = ""; private string _serverUrl = "";
private ISpeakeasyHttpClient _client; private ISpeakeasyHttpClient _client;
private Func<PlexAPI.Models.Components.Security>? _securitySource; private Func<LukeHagar.PlexAPI.SDK.Models.Components.Security>? _securitySource;
public Hubs(ISpeakeasyHttpClient client, Func<PlexAPI.Models.Components.Security>? securitySource, string serverUrl, SDKConfig config) public Hubs(ISpeakeasyHttpClient client, Func<LukeHagar.PlexAPI.SDK.Models.Components.Security>? securitySource, string serverUrl, SDKConfig config)
{ {
_client = client; _client = client;
_securitySource = securitySource; _securitySource = securitySource;

View File

@@ -7,15 +7,15 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI namespace LukeHagar.PlexAPI.SDK
{ {
using LukeHagar.PlexAPI.SDK.Hooks;
using LukeHagar.PlexAPI.SDK.Models.Components;
using LukeHagar.PlexAPI.SDK.Models.Errors;
using LukeHagar.PlexAPI.SDK.Models.Requests;
using LukeHagar.PlexAPI.SDK.Utils.Retries;
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Hooks;
using PlexAPI.Models.Components;
using PlexAPI.Models.Errors;
using PlexAPI.Models.Requests;
using PlexAPI.Utils.Retries;
using PlexAPI.Utils;
using System.Collections.Generic; using System.Collections.Generic;
using System.Net.Http.Headers; using System.Net.Http.Headers;
using System.Net.Http; using System.Net.Http;
@@ -241,15 +241,15 @@ namespace PlexAPI
{ {
public SDKConfig SDKConfiguration { get; private set; } public SDKConfig SDKConfiguration { get; private set; }
private const string _language = "csharp"; private const string _language = "csharp";
private const string _sdkVersion = "0.5.0"; private const string _sdkVersion = "0.5.1";
private const string _sdkGenVersion = "2.409.8"; private const string _sdkGenVersion = "2.411.5";
private const string _openapiDocVersion = "0.0.3"; private const string _openapiDocVersion = "0.0.3";
private const string _userAgent = "speakeasy-sdk/csharp 0.5.0 2.409.8 0.0.3 PlexAPI"; private const string _userAgent = "speakeasy-sdk/csharp 0.5.1 2.411.5 0.0.3 LukeHagar.PlexAPI.SDK";
private string _serverUrl = ""; private string _serverUrl = "";
private ISpeakeasyHttpClient _client; private ISpeakeasyHttpClient _client;
private Func<PlexAPI.Models.Components.Security>? _securitySource; private Func<LukeHagar.PlexAPI.SDK.Models.Components.Security>? _securitySource;
public Library(ISpeakeasyHttpClient client, Func<PlexAPI.Models.Components.Security>? securitySource, string serverUrl, SDKConfig config) public Library(ISpeakeasyHttpClient client, Func<LukeHagar.PlexAPI.SDK.Models.Components.Security>? securitySource, string serverUrl, SDKConfig config)
{ {
_client = client; _client = client;
_securitySource = securitySource; _securitySource = securitySource;

View File

@@ -7,15 +7,15 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI namespace LukeHagar.PlexAPI.SDK
{ {
using LukeHagar.PlexAPI.SDK.Hooks;
using LukeHagar.PlexAPI.SDK.Models.Components;
using LukeHagar.PlexAPI.SDK.Models.Errors;
using LukeHagar.PlexAPI.SDK.Models.Requests;
using LukeHagar.PlexAPI.SDK.Utils.Retries;
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Hooks;
using PlexAPI.Models.Components;
using PlexAPI.Models.Errors;
using PlexAPI.Models.Requests;
using PlexAPI.Utils.Retries;
using PlexAPI.Utils;
using System.Collections.Generic; using System.Collections.Generic;
using System.Net.Http.Headers; using System.Net.Http.Headers;
using System.Net.Http; using System.Net.Http;
@@ -94,15 +94,15 @@ namespace PlexAPI
{ {
public SDKConfig SDKConfiguration { get; private set; } public SDKConfig SDKConfiguration { get; private set; }
private const string _language = "csharp"; private const string _language = "csharp";
private const string _sdkVersion = "0.5.0"; private const string _sdkVersion = "0.5.1";
private const string _sdkGenVersion = "2.409.8"; private const string _sdkGenVersion = "2.411.5";
private const string _openapiDocVersion = "0.0.3"; private const string _openapiDocVersion = "0.0.3";
private const string _userAgent = "speakeasy-sdk/csharp 0.5.0 2.409.8 0.0.3 PlexAPI"; private const string _userAgent = "speakeasy-sdk/csharp 0.5.1 2.411.5 0.0.3 LukeHagar.PlexAPI.SDK";
private string _serverUrl = ""; private string _serverUrl = "";
private ISpeakeasyHttpClient _client; private ISpeakeasyHttpClient _client;
private Func<PlexAPI.Models.Components.Security>? _securitySource; private Func<LukeHagar.PlexAPI.SDK.Models.Components.Security>? _securitySource;
public Log(ISpeakeasyHttpClient client, Func<PlexAPI.Models.Components.Security>? securitySource, string serverUrl, SDKConfig config) public Log(ISpeakeasyHttpClient client, Func<LukeHagar.PlexAPI.SDK.Models.Components.Security>? securitySource, string serverUrl, SDKConfig config)
{ {
_client = client; _client = client;
_securitySource = securitySource; _securitySource = securitySource;

View File

@@ -2,9 +2,9 @@
<PropertyGroup> <PropertyGroup>
<IsPackable>true</IsPackable> <IsPackable>true</IsPackable>
<PackageId>PlexAPI</PackageId> <PackageId>LukeHagar.PlexAPI.SDK</PackageId>
<Version>0.5.0</Version> <Version>0.5.1</Version>
<TargetFramework>net5.0</TargetFramework> <TargetFramework>net8.0</TargetFramework>
<Authors>LukeHagar</Authors> <Authors>LukeHagar</Authors>
<Copyright>Copyright (c) LukeHagar 2024</Copyright> <Copyright>Copyright (c) LukeHagar 2024</Copyright>
<RepositoryUrl>https://github.com/LukeHagar/plexcsharp.git</RepositoryUrl> <RepositoryUrl>https://github.com/LukeHagar/plexcsharp.git</RepositoryUrl>
@@ -24,9 +24,9 @@
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<None Include="..\NUGET.md" Pack="true" PackagePath="README.md"/> <None Include="..\..\..\NUGET.md" Pack="true" PackagePath="README.md"/>
<None Include="..\LICENSE.md" Pack="true" PackagePath="\"/> <None Include="..\..\..\LICENSE.md" Pack="true" PackagePath="\"/>
<None Include="..\docs\**\*" Pack="true" PackagePath="\docs" CopyToOutputDirectory="PreserveNewest"/> <None Include="..\..\..\docs\**\*" Pack="true" PackagePath="\docs" CopyToOutputDirectory="PreserveNewest"/>
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>

View File

@@ -7,15 +7,15 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI namespace LukeHagar.PlexAPI.SDK
{ {
using LukeHagar.PlexAPI.SDK.Hooks;
using LukeHagar.PlexAPI.SDK.Models.Components;
using LukeHagar.PlexAPI.SDK.Models.Errors;
using LukeHagar.PlexAPI.SDK.Models.Requests;
using LukeHagar.PlexAPI.SDK.Utils.Retries;
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Hooks;
using PlexAPI.Models.Components;
using PlexAPI.Models.Errors;
using PlexAPI.Models.Requests;
using PlexAPI.Utils.Retries;
using PlexAPI.Utils;
using System.Collections.Generic; using System.Collections.Generic;
using System.Net.Http.Headers; using System.Net.Http.Headers;
using System.Net.Http; using System.Net.Http;
@@ -90,15 +90,15 @@ namespace PlexAPI
{ {
public SDKConfig SDKConfiguration { get; private set; } public SDKConfig SDKConfiguration { get; private set; }
private const string _language = "csharp"; private const string _language = "csharp";
private const string _sdkVersion = "0.5.0"; private const string _sdkVersion = "0.5.1";
private const string _sdkGenVersion = "2.409.8"; private const string _sdkGenVersion = "2.411.5";
private const string _openapiDocVersion = "0.0.3"; private const string _openapiDocVersion = "0.0.3";
private const string _userAgent = "speakeasy-sdk/csharp 0.5.0 2.409.8 0.0.3 PlexAPI"; private const string _userAgent = "speakeasy-sdk/csharp 0.5.1 2.411.5 0.0.3 LukeHagar.PlexAPI.SDK";
private string _serverUrl = ""; private string _serverUrl = "";
private ISpeakeasyHttpClient _client; private ISpeakeasyHttpClient _client;
private Func<PlexAPI.Models.Components.Security>? _securitySource; private Func<LukeHagar.PlexAPI.SDK.Models.Components.Security>? _securitySource;
public Media(ISpeakeasyHttpClient client, Func<PlexAPI.Models.Components.Security>? securitySource, string serverUrl, SDKConfig config) public Media(ISpeakeasyHttpClient client, Func<LukeHagar.PlexAPI.SDK.Models.Components.Security>? securitySource, string serverUrl, SDKConfig config)
{ {
_client = client; _client = client;
_securitySource = securitySource; _securitySource = securitySource;

View File

@@ -7,9 +7,9 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Components namespace LukeHagar.PlexAPI.SDK.Models.Components
{ {
using PlexAPI.Utils; using LukeHagar.PlexAPI.SDK.Utils;
public class Security public class Security
{ {

View File

@@ -7,10 +7,10 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Utils;
public class AddPlaylistContentsErrors public class AddPlaylistContentsErrors
{ {

View File

@@ -7,11 +7,11 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Models.Errors;
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Models.Errors;
using PlexAPI.Utils;
using System.Collections.Generic; using System.Collections.Generic;
using System.Net.Http; using System.Net.Http;
using System; using System;

View File

@@ -7,10 +7,10 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Utils;
public class ApplyUpdatesErrors public class ApplyUpdatesErrors
{ {

View File

@@ -7,11 +7,11 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Models.Errors;
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Models.Errors;
using PlexAPI.Utils;
using System.Collections.Generic; using System.Collections.Generic;
using System.Net.Http; using System.Net.Http;
using System; using System;

View File

@@ -7,10 +7,10 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Utils;
public class CancelServerActivitiesErrors public class CancelServerActivitiesErrors
{ {

View File

@@ -7,11 +7,11 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Models.Errors;
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Models.Errors;
using PlexAPI.Utils;
using System.Collections.Generic; using System.Collections.Generic;
using System.Net.Http; using System.Net.Http;
using System; using System;

View File

@@ -7,10 +7,10 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Utils;
public class CheckForUpdatesErrors public class CheckForUpdatesErrors
{ {

View File

@@ -7,11 +7,11 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Models.Errors;
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Models.Errors;
using PlexAPI.Utils;
using System.Collections.Generic; using System.Collections.Generic;
using System.Net.Http; using System.Net.Http;
using System; using System;

View File

@@ -7,10 +7,10 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Utils;
public class ClearPlaylistContentsErrors public class ClearPlaylistContentsErrors
{ {

View File

@@ -7,11 +7,11 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Models.Errors;
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Models.Errors;
using PlexAPI.Utils;
using System.Collections.Generic; using System.Collections.Generic;
using System.Net.Http; using System.Net.Http;
using System; using System;

View File

@@ -7,10 +7,10 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Utils;
public class CreatePlaylistErrors public class CreatePlaylistErrors
{ {

View File

@@ -7,11 +7,11 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Models.Errors;
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Models.Errors;
using PlexAPI.Utils;
using System.Collections.Generic; using System.Collections.Generic;
using System.Net.Http; using System.Net.Http;
using System; using System;

View File

@@ -7,10 +7,10 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Utils;
public class DeleteLibraryErrors public class DeleteLibraryErrors
{ {

View File

@@ -7,11 +7,11 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Models.Errors;
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Models.Errors;
using PlexAPI.Utils;
using System.Collections.Generic; using System.Collections.Generic;
using System.Net.Http; using System.Net.Http;
using System; using System;

View File

@@ -7,10 +7,10 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Utils;
public class DeletePlaylistErrors public class DeletePlaylistErrors
{ {

View File

@@ -7,11 +7,11 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Models.Errors;
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Models.Errors;
using PlexAPI.Utils;
using System.Collections.Generic; using System.Collections.Generic;
using System.Net.Http; using System.Net.Http;
using System; using System;

View File

@@ -7,10 +7,10 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Utils;
public class EnablePaperTrailErrors public class EnablePaperTrailErrors
{ {

View File

@@ -7,11 +7,11 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Models.Errors;
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Models.Errors;
using PlexAPI.Utils;
using System.Collections.Generic; using System.Collections.Generic;
using System.Net.Http; using System.Net.Http;
using System; using System;

View File

@@ -7,10 +7,10 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Utils;
public class Errors public class Errors
{ {

View File

@@ -7,10 +7,10 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Utils;
public class GetAllLibrariesErrors public class GetAllLibrariesErrors
{ {

View File

@@ -7,11 +7,11 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Models.Errors;
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Models.Errors;
using PlexAPI.Utils;
using System.Collections.Generic; using System.Collections.Generic;
using System.Net.Http; using System.Net.Http;
using System; using System;

View File

@@ -7,10 +7,10 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Utils;
public class GetAvailableClientsErrors public class GetAvailableClientsErrors
{ {

View File

@@ -7,11 +7,11 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Models.Errors;
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Models.Errors;
using PlexAPI.Utils;
using System.Collections.Generic; using System.Collections.Generic;
using System.Net.Http; using System.Net.Http;
using System; using System;

View File

@@ -7,10 +7,10 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Utils;
public class GetBandwidthStatisticsErrors public class GetBandwidthStatisticsErrors
{ {

View File

@@ -7,11 +7,11 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Models.Errors;
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Models.Errors;
using PlexAPI.Utils;
using System.Collections.Generic; using System.Collections.Generic;
using System.Net.Http; using System.Net.Http;
using System; using System;

View File

@@ -7,10 +7,10 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Utils;
public class GetBannerImageErrors public class GetBannerImageErrors
{ {

View File

@@ -7,11 +7,11 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Models.Errors;
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Models.Errors;
using PlexAPI.Utils;
using System.Collections.Generic; using System.Collections.Generic;
using System.Net.Http; using System.Net.Http;
using System; using System;

View File

@@ -7,10 +7,10 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Utils;
public class GetButlerTasksErrors public class GetButlerTasksErrors
{ {

View File

@@ -7,11 +7,11 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Models.Errors;
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Models.Errors;
using PlexAPI.Utils;
using System.Collections.Generic; using System.Collections.Generic;
using System.Net.Http; using System.Net.Http;
using System; using System;

View File

@@ -7,10 +7,10 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Utils;
public class GetCompanionsDataErrors public class GetCompanionsDataErrors
{ {

View File

@@ -7,11 +7,11 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Models.Errors;
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Models.Errors;
using PlexAPI.Utils;
using System.Collections.Generic; using System.Collections.Generic;
using System.Net.Http; using System.Net.Http;
using System; using System;

View File

@@ -7,10 +7,10 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Utils;
public class GetDevicesErrors public class GetDevicesErrors
{ {

View File

@@ -7,11 +7,11 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Models.Errors;
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Models.Errors;
using PlexAPI.Utils;
using System.Collections.Generic; using System.Collections.Generic;
using System.Net.Http; using System.Net.Http;
using System; using System;

View File

@@ -7,10 +7,10 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Utils;
public class GetFileHashErrors public class GetFileHashErrors
{ {

View File

@@ -7,11 +7,11 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Models.Errors;
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Models.Errors;
using PlexAPI.Utils;
using System.Collections.Generic; using System.Collections.Generic;
using System.Net.Http; using System.Net.Http;
using System; using System;

View File

@@ -7,10 +7,10 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Utils;
public class GetGeoDataErrors public class GetGeoDataErrors
{ {

View File

@@ -7,11 +7,11 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Models.Errors;
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Models.Errors;
using PlexAPI.Utils;
using System.Collections.Generic; using System.Collections.Generic;
using System.Net.Http; using System.Net.Http;
using System; using System;

View File

@@ -7,10 +7,10 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Utils;
public class GetGlobalHubsErrors public class GetGlobalHubsErrors
{ {

View File

@@ -7,11 +7,11 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Models.Errors;
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Models.Errors;
using PlexAPI.Utils;
using System.Collections.Generic; using System.Collections.Generic;
using System.Net.Http; using System.Net.Http;
using System; using System;

View File

@@ -7,10 +7,10 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Utils;
public class GetHomeDataErrors public class GetHomeDataErrors
{ {

View File

@@ -7,11 +7,11 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Models.Errors;
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Models.Errors;
using PlexAPI.Utils;
using System.Collections.Generic; using System.Collections.Generic;
using System.Net.Http; using System.Net.Http;
using System; using System;

View File

@@ -7,10 +7,10 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Utils;
public class GetLibraryDetailsErrors public class GetLibraryDetailsErrors
{ {

View File

@@ -7,11 +7,11 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Models.Errors;
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Models.Errors;
using PlexAPI.Utils;
using System.Collections.Generic; using System.Collections.Generic;
using System.Net.Http; using System.Net.Http;
using System; using System;

View File

@@ -7,10 +7,10 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Utils;
public class GetLibraryHubsErrors public class GetLibraryHubsErrors
{ {

View File

@@ -7,11 +7,11 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Models.Errors;
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Models.Errors;
using PlexAPI.Utils;
using System.Collections.Generic; using System.Collections.Generic;
using System.Net.Http; using System.Net.Http;
using System; using System;

View File

@@ -7,10 +7,10 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Utils;
public class GetLibraryItemsErrors public class GetLibraryItemsErrors
{ {

View File

@@ -7,11 +7,11 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Models.Errors;
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Models.Errors;
using PlexAPI.Utils;
using System.Collections.Generic; using System.Collections.Generic;
using System.Net.Http; using System.Net.Http;
using System; using System;

View File

@@ -7,10 +7,10 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Utils;
public class GetMediaProvidersErrors public class GetMediaProvidersErrors
{ {

View File

@@ -7,11 +7,11 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Models.Errors;
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Models.Errors;
using PlexAPI.Utils;
using System.Collections.Generic; using System.Collections.Generic;
using System.Net.Http; using System.Net.Http;
using System; using System;

View File

@@ -7,10 +7,10 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Utils;
public class GetMetaDataByRatingKeyErrors public class GetMetaDataByRatingKeyErrors
{ {

View File

@@ -7,11 +7,11 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Models.Errors;
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Models.Errors;
using PlexAPI.Utils;
using System.Collections.Generic; using System.Collections.Generic;
using System.Net.Http; using System.Net.Http;
using System; using System;

View File

@@ -7,10 +7,10 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Utils;
public class GetMetadataChildrenErrors public class GetMetadataChildrenErrors
{ {

View File

@@ -7,11 +7,11 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Models.Errors;
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Models.Errors;
using PlexAPI.Utils;
using System.Collections.Generic; using System.Collections.Generic;
using System.Net.Http; using System.Net.Http;
using System; using System;

View File

@@ -7,10 +7,10 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Utils;
public class GetMyPlexAccountErrors public class GetMyPlexAccountErrors
{ {

View File

@@ -7,11 +7,11 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Models.Errors;
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Models.Errors;
using PlexAPI.Utils;
using System.Collections.Generic; using System.Collections.Generic;
using System.Net.Http; using System.Net.Http;
using System; using System;

View File

@@ -7,10 +7,10 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Utils;
public class GetOnDeckErrors public class GetOnDeckErrors
{ {

View File

@@ -7,11 +7,11 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Models.Errors;
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Models.Errors;
using PlexAPI.Utils;
using System.Collections.Generic; using System.Collections.Generic;
using System.Net.Http; using System.Net.Http;
using System; using System;

View File

@@ -7,10 +7,10 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Utils;
public class GetPinErrors public class GetPinErrors
{ {

View File

@@ -7,11 +7,11 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Models.Errors;
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Models.Errors;
using PlexAPI.Utils;
using System.Collections.Generic; using System.Collections.Generic;
using System.Net.Http; using System.Net.Http;
using System; using System;

View File

@@ -7,10 +7,10 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Utils;
public class GetPlaylistContentsErrors public class GetPlaylistContentsErrors
{ {

View File

@@ -7,11 +7,11 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Models.Errors;
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Models.Errors;
using PlexAPI.Utils;
using System.Collections.Generic; using System.Collections.Generic;
using System.Net.Http; using System.Net.Http;
using System; using System;

View File

@@ -7,10 +7,10 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Utils;
public class GetPlaylistErrors public class GetPlaylistErrors
{ {

View File

@@ -7,11 +7,11 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Models.Errors;
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Models.Errors;
using PlexAPI.Utils;
using System.Collections.Generic; using System.Collections.Generic;
using System.Net.Http; using System.Net.Http;
using System; using System;

View File

@@ -7,10 +7,10 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Utils;
public class GetPlaylistsErrors public class GetPlaylistsErrors
{ {

View File

@@ -7,11 +7,11 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Models.Errors;
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Models.Errors;
using PlexAPI.Utils;
using System.Collections.Generic; using System.Collections.Generic;
using System.Net.Http; using System.Net.Http;
using System; using System;

View File

@@ -7,10 +7,10 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Utils;
public class GetRecentlyAddedErrors public class GetRecentlyAddedErrors
{ {

View File

@@ -7,11 +7,11 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Models.Errors;
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Models.Errors;
using PlexAPI.Utils;
using System.Collections.Generic; using System.Collections.Generic;
using System.Net.Http; using System.Net.Http;
using System; using System;

View File

@@ -7,10 +7,10 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Utils;
public class GetRefreshLibraryMetadataErrors public class GetRefreshLibraryMetadataErrors
{ {

View File

@@ -7,11 +7,11 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Models.Errors;
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Models.Errors;
using PlexAPI.Utils;
using System.Collections.Generic; using System.Collections.Generic;
using System.Net.Http; using System.Net.Http;
using System; using System;

View File

@@ -7,10 +7,10 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Utils;
public class GetResizedPhotoErrors public class GetResizedPhotoErrors
{ {

View File

@@ -7,11 +7,11 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Models.Errors;
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Models.Errors;
using PlexAPI.Utils;
using System.Collections.Generic; using System.Collections.Generic;
using System.Net.Http; using System.Net.Http;
using System; using System;

View File

@@ -7,10 +7,10 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Utils;
public class GetResourcesStatisticsErrors public class GetResourcesStatisticsErrors
{ {

View File

@@ -7,11 +7,11 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Models.Errors;
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Models.Errors;
using PlexAPI.Utils;
using System.Collections.Generic; using System.Collections.Generic;
using System.Net.Http; using System.Net.Http;
using System; using System;

View File

@@ -7,10 +7,10 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Utils;
public class GetSearchLibraryErrors public class GetSearchLibraryErrors
{ {

View File

@@ -7,11 +7,11 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Models.Errors;
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Models.Errors;
using PlexAPI.Utils;
using System.Collections.Generic; using System.Collections.Generic;
using System.Net.Http; using System.Net.Http;
using System; using System;

View File

@@ -7,10 +7,10 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Utils;
public class GetSearchResultsErrors public class GetSearchResultsErrors
{ {

View File

@@ -7,11 +7,11 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Models.Errors;
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Models.Errors;
using PlexAPI.Utils;
using System.Collections.Generic; using System.Collections.Generic;
using System.Net.Http; using System.Net.Http;
using System; using System;

View File

@@ -7,10 +7,10 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Utils;
public class GetServerActivitiesErrors public class GetServerActivitiesErrors
{ {

View File

@@ -7,11 +7,11 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Models.Errors;
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Models.Errors;
using PlexAPI.Utils;
using System.Collections.Generic; using System.Collections.Generic;
using System.Net.Http; using System.Net.Http;
using System; using System;

View File

@@ -7,11 +7,11 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Models.Errors;
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Models.Errors;
using PlexAPI.Utils;
using System.Collections.Generic; using System.Collections.Generic;
using System.Net.Http; using System.Net.Http;
using System; using System;

View File

@@ -7,10 +7,10 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Utils;
using System.Net.Http; using System.Net.Http;
using System; using System;

View File

@@ -7,10 +7,10 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Utils;
public class GetServerListErrors public class GetServerListErrors
{ {

View File

@@ -7,11 +7,11 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Models.Errors;
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Models.Errors;
using PlexAPI.Utils;
using System.Collections.Generic; using System.Collections.Generic;
using System.Net.Http; using System.Net.Http;
using System; using System;

View File

@@ -7,10 +7,10 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
#nullable enable #nullable enable
namespace PlexAPI.Models.Errors namespace LukeHagar.PlexAPI.SDK.Models.Errors
{ {
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json; using Newtonsoft.Json;
using PlexAPI.Utils;
public class GetServerPreferencesErrors public class GetServerPreferencesErrors
{ {

Some files were not shown because too many files have changed in this diff Show More