mirror of
https://github.com/LukeHagar/plexcsharp.git
synced 2025-12-06 20:47:49 +00:00
Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d970db3b6f | ||
|
|
4197184f92 |
File diff suppressed because one or more lines are too long
@@ -16,10 +16,15 @@ generation:
|
|||||||
auth:
|
auth:
|
||||||
oAuth2ClientCredentialsEnabled: true
|
oAuth2ClientCredentialsEnabled: true
|
||||||
oAuth2PasswordEnabled: false
|
oAuth2PasswordEnabled: false
|
||||||
|
tests:
|
||||||
|
generateTests: true
|
||||||
|
generateNewTests: false
|
||||||
|
skipResponseBodyAssertions: false
|
||||||
csharp:
|
csharp:
|
||||||
version: 0.15.0
|
version: 0.16.0
|
||||||
additionalDependencies: []
|
additionalDependencies: []
|
||||||
author: LukeHagar
|
author: LukeHagar
|
||||||
|
baseErrorName: PlexAPIError
|
||||||
clientServerStatusCodesAsErrors: true
|
clientServerStatusCodesAsErrors: true
|
||||||
defaultErrorName: SDKException
|
defaultErrorName: SDKException
|
||||||
disableNamespacePascalCasingApr2024: true
|
disableNamespacePascalCasingApr2024: true
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
speakeasyVersion: 1.555.2
|
speakeasyVersion: 1.598.0
|
||||||
sources:
|
sources:
|
||||||
my-source:
|
my-source:
|
||||||
sourceNamespace: my-source
|
sourceNamespace: my-source
|
||||||
@@ -16,19 +16,19 @@ sources:
|
|||||||
- main
|
- main
|
||||||
plexapi:
|
plexapi:
|
||||||
sourceNamespace: plexapi
|
sourceNamespace: plexapi
|
||||||
sourceRevisionDigest: sha256:78d07ad78ff60d0e9918696208d8c68a562e170d4e9c431797c02995fb8816d0
|
sourceRevisionDigest: sha256:b4fa89a3571fbdcb4228800772a5fe1c292170babcd3e055161ae54402f89577
|
||||||
sourceBlobDigest: sha256:d38dd2a36c1b2fd73409267f7b30c2d5d45d709616141803ea01db424ec68ae4
|
sourceBlobDigest: sha256:f84dd2bfdaea4074454cea3c7fbc6c9e05515c5e9e961abb4923b77f8faf48f1
|
||||||
tags:
|
tags:
|
||||||
- latest
|
- latest
|
||||||
- speakeasy-sdk-regen-1748996711
|
- speakeasy-sdk-regen-1754440055
|
||||||
targets:
|
targets:
|
||||||
plexcsharp:
|
plexcsharp:
|
||||||
source: plexapi
|
source: plexapi
|
||||||
sourceNamespace: plexapi
|
sourceNamespace: plexapi
|
||||||
sourceRevisionDigest: sha256:78d07ad78ff60d0e9918696208d8c68a562e170d4e9c431797c02995fb8816d0
|
sourceRevisionDigest: sha256:b4fa89a3571fbdcb4228800772a5fe1c292170babcd3e055161ae54402f89577
|
||||||
sourceBlobDigest: sha256:d38dd2a36c1b2fd73409267f7b30c2d5d45d709616141803ea01db424ec68ae4
|
sourceBlobDigest: sha256:f84dd2bfdaea4074454cea3c7fbc6c9e05515c5e9e961abb4923b77f8faf48f1
|
||||||
codeSamplesNamespace: code-samples-csharp-plexcsharp
|
codeSamplesNamespace: code-samples-csharp-plexcsharp
|
||||||
codeSamplesRevisionDigest: sha256:5609267a659a1b1fdebdd8516758904fc983fb919b5b5a8bbd0044567e8bfa0f
|
codeSamplesRevisionDigest: sha256:c2f97be4e2fb1380a7f91adf6b91cc8a701cd90ffa314ff36785d1aaf58cb01c
|
||||||
workflow:
|
workflow:
|
||||||
workflowVersion: 1.0.0
|
workflowVersion: 1.0.0
|
||||||
speakeasyVersion: latest
|
speakeasyVersion: latest
|
||||||
|
|||||||
@@ -74,8 +74,8 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
{
|
{
|
||||||
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.15.0";
|
private const string _sdkVersion = "0.16.0";
|
||||||
private const string _sdkGenVersion = "2.620.2";
|
private const string _sdkGenVersion = "2.674.1";
|
||||||
private const string _openapiDocVersion = "0.0.3";
|
private const string _openapiDocVersion = "0.0.3";
|
||||||
|
|
||||||
public Activities(SDKConfig config)
|
public Activities(SDKConfig config)
|
||||||
|
|||||||
@@ -95,8 +95,8 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
};
|
};
|
||||||
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.15.0";
|
private const string _sdkVersion = "0.16.0";
|
||||||
private const string _sdkGenVersion = "2.620.2";
|
private const string _sdkGenVersion = "2.674.1";
|
||||||
private const string _openapiDocVersion = "0.0.3";
|
private const string _openapiDocVersion = "0.0.3";
|
||||||
|
|
||||||
public Authentication(SDKConfig config)
|
public Authentication(SDKConfig config)
|
||||||
|
|||||||
@@ -17,7 +17,9 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
using LukeHagar.PlexAPI.SDK.Utils.Retries;
|
using LukeHagar.PlexAPI.SDK.Utils.Retries;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
using System;
|
using System;
|
||||||
|
using System.Collections.Concurrent;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
using System.Net.Http;
|
using System.Net.Http;
|
||||||
using System.Net.Http.Headers;
|
using System.Net.Http.Headers;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
@@ -101,8 +103,8 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
{
|
{
|
||||||
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.15.0";
|
private const string _sdkVersion = "0.16.0";
|
||||||
private const string _sdkGenVersion = "2.620.2";
|
private const string _sdkGenVersion = "2.674.1";
|
||||||
private const string _openapiDocVersion = "0.0.3";
|
private const string _openapiDocVersion = "0.0.3";
|
||||||
|
|
||||||
public Butler(SDKConfig config)
|
public Butler(SDKConfig config)
|
||||||
|
|||||||
@@ -73,8 +73,8 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
{
|
{
|
||||||
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.15.0";
|
private const string _sdkVersion = "0.16.0";
|
||||||
private const string _sdkGenVersion = "2.620.2";
|
private const string _sdkGenVersion = "2.674.1";
|
||||||
private const string _openapiDocVersion = "0.0.3";
|
private const string _openapiDocVersion = "0.0.3";
|
||||||
|
|
||||||
public Hubs(SDKConfig config)
|
public Hubs(SDKConfig config)
|
||||||
|
|||||||
@@ -17,7 +17,9 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
using LukeHagar.PlexAPI.SDK.Utils.Retries;
|
using LukeHagar.PlexAPI.SDK.Utils.Retries;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
using System;
|
using System;
|
||||||
|
using System.Collections.Concurrent;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
using System.Net.Http;
|
using System.Net.Http;
|
||||||
using System.Net.Http.Headers;
|
using System.Net.Http.Headers;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
@@ -319,8 +321,8 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
{
|
{
|
||||||
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.15.0";
|
private const string _sdkVersion = "0.16.0";
|
||||||
private const string _sdkGenVersion = "2.620.2";
|
private const string _sdkGenVersion = "2.674.1";
|
||||||
private const string _openapiDocVersion = "0.0.3";
|
private const string _openapiDocVersion = "0.0.3";
|
||||||
|
|
||||||
public Library(SDKConfig config)
|
public Library(SDKConfig config)
|
||||||
|
|||||||
@@ -17,7 +17,9 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
using LukeHagar.PlexAPI.SDK.Utils.Retries;
|
using LukeHagar.PlexAPI.SDK.Utils.Retries;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
using System;
|
using System;
|
||||||
|
using System.Collections.Concurrent;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
using System.Net.Http;
|
using System.Net.Http;
|
||||||
using System.Net.Http.Headers;
|
using System.Net.Http.Headers;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
@@ -94,8 +96,8 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
{
|
{
|
||||||
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.15.0";
|
private const string _sdkVersion = "0.16.0";
|
||||||
private const string _sdkGenVersion = "2.620.2";
|
private const string _sdkGenVersion = "2.674.1";
|
||||||
private const string _openapiDocVersion = "0.0.3";
|
private const string _openapiDocVersion = "0.0.3";
|
||||||
|
|
||||||
public Log(SDKConfig config)
|
public Log(SDKConfig config)
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<IsPackable>true</IsPackable>
|
<IsPackable>true</IsPackable>
|
||||||
<PackageId>LukeHagar.PlexAPI.SDK</PackageId>
|
<PackageId>LukeHagar.PlexAPI.SDK</PackageId>
|
||||||
<Version>0.15.0</Version>
|
<Version>0.16.0</Version>
|
||||||
<TargetFramework>net8.0</TargetFramework>
|
<TargetFramework>net8.0</TargetFramework>
|
||||||
<Authors>LukeHagar</Authors>
|
<Authors>LukeHagar</Authors>
|
||||||
<Copyright>Copyright (c) LukeHagar 2025</Copyright>
|
<Copyright>Copyright (c) LukeHagar 2025</Copyright>
|
||||||
|
|||||||
@@ -90,8 +90,8 @@ namespace LukeHagar.PlexAPI.SDK
|
|||||||
{
|
{
|
||||||
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.15.0";
|
private const string _sdkVersion = "0.16.0";
|
||||||
private const string _sdkGenVersion = "2.620.2";
|
private const string _sdkGenVersion = "2.674.1";
|
||||||
private const string _openapiDocVersion = "0.0.3";
|
private const string _openapiDocVersion = "0.0.3";
|
||||||
|
|
||||||
public Media(SDKConfig config)
|
public Media(SDKConfig config)
|
||||||
|
|||||||
@@ -12,51 +12,69 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
using LukeHagar.PlexAPI.SDK.Utils;
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
using System;
|
using System;
|
||||||
|
using System.Collections.Concurrent;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// type of playlist to create
|
/// type of playlist to create
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public enum CreatePlaylistQueryParamType
|
[JsonConverter(typeof(OpenEnumConverter))]
|
||||||
|
public class CreatePlaylistQueryParamType : IEquatable<CreatePlaylistQueryParamType>
|
||||||
{
|
{
|
||||||
[JsonProperty("audio")]
|
public static readonly CreatePlaylistQueryParamType Audio = new CreatePlaylistQueryParamType("audio");
|
||||||
Audio,
|
public static readonly CreatePlaylistQueryParamType Video = new CreatePlaylistQueryParamType("video");
|
||||||
[JsonProperty("video")]
|
public static readonly CreatePlaylistQueryParamType Photo = new CreatePlaylistQueryParamType("photo");
|
||||||
Video,
|
|
||||||
[JsonProperty("photo")]
|
private static readonly Dictionary <string, CreatePlaylistQueryParamType> _knownValues =
|
||||||
Photo,
|
new Dictionary <string, CreatePlaylistQueryParamType> ()
|
||||||
|
{
|
||||||
|
["audio"] = Audio,
|
||||||
|
["video"] = Video,
|
||||||
|
["photo"] = Photo
|
||||||
|
};
|
||||||
|
|
||||||
|
private static readonly ConcurrentDictionary<string, CreatePlaylistQueryParamType> _values =
|
||||||
|
new ConcurrentDictionary<string, CreatePlaylistQueryParamType>(_knownValues);
|
||||||
|
|
||||||
|
private CreatePlaylistQueryParamType(string value)
|
||||||
|
{
|
||||||
|
if (value == null) throw new ArgumentNullException(nameof(value));
|
||||||
|
Value = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static class CreatePlaylistQueryParamTypeExtension
|
public string Value { get; }
|
||||||
|
|
||||||
|
public static CreatePlaylistQueryParamType Of(string value)
|
||||||
{
|
{
|
||||||
public static string Value(this CreatePlaylistQueryParamType value)
|
return _values.GetOrAdd(value, _ => new CreatePlaylistQueryParamType(value));
|
||||||
{
|
|
||||||
return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString())[0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public static CreatePlaylistQueryParamType ToEnum(this string value)
|
public static implicit operator CreatePlaylistQueryParamType(string value) => Of(value);
|
||||||
|
public static implicit operator string(CreatePlaylistQueryParamType createplaylistqueryparamtype) => createplaylistqueryparamtype.Value;
|
||||||
|
|
||||||
|
public static CreatePlaylistQueryParamType[] Values()
|
||||||
{
|
{
|
||||||
foreach(var field in typeof(CreatePlaylistQueryParamType).GetFields())
|
return _values.Values.ToArray();
|
||||||
{
|
|
||||||
var attributes = field.GetCustomAttributes(typeof(JsonPropertyAttribute), false);
|
|
||||||
if (attributes.Length == 0)
|
|
||||||
{
|
|
||||||
continue;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
var attribute = attributes[0] as JsonPropertyAttribute;
|
public override string ToString() => Value.ToString();
|
||||||
if (attribute != null && attribute.PropertyName == value)
|
|
||||||
{
|
|
||||||
var enumVal = field.GetValue(null);
|
|
||||||
|
|
||||||
if (enumVal is CreatePlaylistQueryParamType)
|
public bool IsKnown()
|
||||||
{
|
{
|
||||||
return (CreatePlaylistQueryParamType)enumVal;
|
return _knownValues.ContainsKey(Value);
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
throw new Exception($"Unknown value {value} for enum CreatePlaylistQueryParamType");
|
public override bool Equals(object? obj) => Equals(obj as CreatePlaylistQueryParamType);
|
||||||
|
|
||||||
|
public bool Equals(CreatePlaylistQueryParamType? other)
|
||||||
|
{
|
||||||
|
if (ReferenceEquals(this, other)) return true;
|
||||||
|
if (other is null) return false;
|
||||||
|
return string.Equals(Value, other.Value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public override int GetHashCode() => Value.GetHashCode();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -11,6 +11,11 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
{
|
{
|
||||||
using LukeHagar.PlexAPI.SDK.Models.Requests;
|
using LukeHagar.PlexAPI.SDK.Models.Requests;
|
||||||
using LukeHagar.PlexAPI.SDK.Utils;
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Concurrent;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
|
||||||
public class CreatePlaylistRequest
|
public class CreatePlaylistRequest
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,60 +0,0 @@
|
|||||||
//------------------------------------------------------------------------------
|
|
||||||
// <auto-generated>
|
|
||||||
// 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.
|
|
||||||
// </auto-generated>
|
|
||||||
//------------------------------------------------------------------------------
|
|
||||||
#nullable enable
|
|
||||||
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|
||||||
{
|
|
||||||
using LukeHagar.PlexAPI.SDK.Utils;
|
|
||||||
using Newtonsoft.Json;
|
|
||||||
using System;
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Setting that indicates if credits markers detection is enabled. (-1 = Library default, 0 = Disabled).
|
|
||||||
/// </summary>
|
|
||||||
public enum EnableCreditsMarkerGeneration
|
|
||||||
{
|
|
||||||
[JsonProperty("-1")]
|
|
||||||
LibraryDefault,
|
|
||||||
[JsonProperty("0")]
|
|
||||||
Disabled,
|
|
||||||
}
|
|
||||||
|
|
||||||
public static class EnableCreditsMarkerGenerationExtension
|
|
||||||
{
|
|
||||||
public static string Value(this EnableCreditsMarkerGeneration value)
|
|
||||||
{
|
|
||||||
return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString())[0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
|
|
||||||
}
|
|
||||||
|
|
||||||
public static EnableCreditsMarkerGeneration ToEnum(this string value)
|
|
||||||
{
|
|
||||||
foreach(var field in typeof(EnableCreditsMarkerGeneration).GetFields())
|
|
||||||
{
|
|
||||||
var attributes = field.GetCustomAttributes(typeof(JsonPropertyAttribute), false);
|
|
||||||
if (attributes.Length == 0)
|
|
||||||
{
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
var attribute = attributes[0] as JsonPropertyAttribute;
|
|
||||||
if (attribute != null && attribute.PropertyName == value)
|
|
||||||
{
|
|
||||||
var enumVal = field.GetValue(null);
|
|
||||||
|
|
||||||
if (enumVal is EnableCreditsMarkerGeneration)
|
|
||||||
{
|
|
||||||
return (EnableCreditsMarkerGeneration)enumVal;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
throw new Exception($"Unknown value {value} for enum EnableCreditsMarkerGeneration");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,62 +0,0 @@
|
|||||||
//------------------------------------------------------------------------------
|
|
||||||
// <auto-generated>
|
|
||||||
// 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.
|
|
||||||
// </auto-generated>
|
|
||||||
//------------------------------------------------------------------------------
|
|
||||||
#nullable enable
|
|
||||||
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|
||||||
{
|
|
||||||
using LukeHagar.PlexAPI.SDK.Utils;
|
|
||||||
using Newtonsoft.Json;
|
|
||||||
using System;
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Setting that indicates how episodes are sorted for the show. (-1 = Library default, 0 = Oldest first, 1 = Newest first).
|
|
||||||
/// </summary>
|
|
||||||
public enum EpisodeSort
|
|
||||||
{
|
|
||||||
[JsonProperty("-1")]
|
|
||||||
LibraryDefault,
|
|
||||||
[JsonProperty("0")]
|
|
||||||
OldestFirst,
|
|
||||||
[JsonProperty("1")]
|
|
||||||
NewestFirst,
|
|
||||||
}
|
|
||||||
|
|
||||||
public static class EpisodeSortExtension
|
|
||||||
{
|
|
||||||
public static string Value(this EpisodeSort value)
|
|
||||||
{
|
|
||||||
return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString())[0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
|
|
||||||
}
|
|
||||||
|
|
||||||
public static EpisodeSort ToEnum(this string value)
|
|
||||||
{
|
|
||||||
foreach(var field in typeof(EpisodeSort).GetFields())
|
|
||||||
{
|
|
||||||
var attributes = field.GetCustomAttributes(typeof(JsonPropertyAttribute), false);
|
|
||||||
if (attributes.Length == 0)
|
|
||||||
{
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
var attribute = attributes[0] as JsonPropertyAttribute;
|
|
||||||
if (attribute != null && attribute.PropertyName == value)
|
|
||||||
{
|
|
||||||
var enumVal = field.GetValue(null);
|
|
||||||
|
|
||||||
if (enumVal is EpisodeSort)
|
|
||||||
{
|
|
||||||
return (EpisodeSort)enumVal;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
throw new Exception($"Unknown value {value} for enum EpisodeSort");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -12,51 +12,69 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
using LukeHagar.PlexAPI.SDK.Utils;
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
using System;
|
using System;
|
||||||
|
using System.Collections.Concurrent;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Filter
|
/// Filter
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public enum Filter
|
[JsonConverter(typeof(OpenEnumConverter))]
|
||||||
|
public class Filter : IEquatable<Filter>
|
||||||
{
|
{
|
||||||
[JsonProperty("all")]
|
public static readonly Filter All = new Filter("all");
|
||||||
All,
|
public static readonly Filter Available = new Filter("available");
|
||||||
[JsonProperty("available")]
|
public static readonly Filter Released = new Filter("released");
|
||||||
Available,
|
|
||||||
[JsonProperty("released")]
|
private static readonly Dictionary <string, Filter> _knownValues =
|
||||||
Released,
|
new Dictionary <string, Filter> ()
|
||||||
|
{
|
||||||
|
["all"] = All,
|
||||||
|
["available"] = Available,
|
||||||
|
["released"] = Released
|
||||||
|
};
|
||||||
|
|
||||||
|
private static readonly ConcurrentDictionary<string, Filter> _values =
|
||||||
|
new ConcurrentDictionary<string, Filter>(_knownValues);
|
||||||
|
|
||||||
|
private Filter(string value)
|
||||||
|
{
|
||||||
|
if (value == null) throw new ArgumentNullException(nameof(value));
|
||||||
|
Value = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static class FilterExtension
|
public string Value { get; }
|
||||||
|
|
||||||
|
public static Filter Of(string value)
|
||||||
{
|
{
|
||||||
public static string Value(this Filter value)
|
return _values.GetOrAdd(value, _ => new Filter(value));
|
||||||
{
|
|
||||||
return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString())[0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public static Filter ToEnum(this string value)
|
public static implicit operator Filter(string value) => Of(value);
|
||||||
|
public static implicit operator string(Filter filter) => filter.Value;
|
||||||
|
|
||||||
|
public static Filter[] Values()
|
||||||
{
|
{
|
||||||
foreach(var field in typeof(Filter).GetFields())
|
return _values.Values.ToArray();
|
||||||
{
|
|
||||||
var attributes = field.GetCustomAttributes(typeof(JsonPropertyAttribute), false);
|
|
||||||
if (attributes.Length == 0)
|
|
||||||
{
|
|
||||||
continue;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
var attribute = attributes[0] as JsonPropertyAttribute;
|
public override string ToString() => Value.ToString();
|
||||||
if (attribute != null && attribute.PropertyName == value)
|
|
||||||
{
|
|
||||||
var enumVal = field.GetValue(null);
|
|
||||||
|
|
||||||
if (enumVal is Filter)
|
public bool IsKnown()
|
||||||
{
|
{
|
||||||
return (Filter)enumVal;
|
return _knownValues.ContainsKey(Value);
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
throw new Exception($"Unknown value {value} for enum Filter");
|
public override bool Equals(object? obj) => Equals(obj as Filter);
|
||||||
|
|
||||||
|
public bool Equals(Filter? other)
|
||||||
|
{
|
||||||
|
if (ReferenceEquals(this, other)) return true;
|
||||||
|
if (other is null) return false;
|
||||||
|
return string.Equals(Value, other.Value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public override int GetHashCode() => Value.GetHashCode();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -12,51 +12,73 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
using LukeHagar.PlexAPI.SDK.Utils;
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
using System;
|
using System;
|
||||||
|
using System.Collections.Concurrent;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Setting that indicates if seasons are set to hidden for the show. (-1 = Library default, 0 = Hide, 1 = Show).
|
/// Setting that indicates if seasons are set to hidden for the show. (-1 = Library default, 0 = Hide, 1 = Show).<br/>
|
||||||
|
///
|
||||||
|
/// <remarks>
|
||||||
|
///
|
||||||
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public enum FlattenSeasons
|
[JsonConverter(typeof(OpenEnumConverter))]
|
||||||
|
public class FlattenSeasons : IEquatable<FlattenSeasons>
|
||||||
{
|
{
|
||||||
[JsonProperty("-1")]
|
public static readonly FlattenSeasons LibraryDefault = new FlattenSeasons("-1");
|
||||||
LibraryDefault,
|
public static readonly FlattenSeasons Hide = new FlattenSeasons("0");
|
||||||
[JsonProperty("0")]
|
public static readonly FlattenSeasons Show = new FlattenSeasons("1");
|
||||||
Hide,
|
|
||||||
[JsonProperty("1")]
|
private static readonly Dictionary <string, FlattenSeasons> _knownValues =
|
||||||
Show,
|
new Dictionary <string, FlattenSeasons> ()
|
||||||
|
{
|
||||||
|
["-1"] = LibraryDefault,
|
||||||
|
["0"] = Hide,
|
||||||
|
["1"] = Show
|
||||||
|
};
|
||||||
|
|
||||||
|
private static readonly ConcurrentDictionary<string, FlattenSeasons> _values =
|
||||||
|
new ConcurrentDictionary<string, FlattenSeasons>(_knownValues);
|
||||||
|
|
||||||
|
private FlattenSeasons(string value)
|
||||||
|
{
|
||||||
|
if (value == null) throw new ArgumentNullException(nameof(value));
|
||||||
|
Value = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static class FlattenSeasonsExtension
|
public string Value { get; }
|
||||||
|
|
||||||
|
public static FlattenSeasons Of(string value)
|
||||||
{
|
{
|
||||||
public static string Value(this FlattenSeasons value)
|
return _values.GetOrAdd(value, _ => new FlattenSeasons(value));
|
||||||
{
|
|
||||||
return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString())[0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public static FlattenSeasons ToEnum(this string value)
|
public static implicit operator FlattenSeasons(string value) => Of(value);
|
||||||
|
public static implicit operator string(FlattenSeasons flattenseasons) => flattenseasons.Value;
|
||||||
|
|
||||||
|
public static FlattenSeasons[] Values()
|
||||||
{
|
{
|
||||||
foreach(var field in typeof(FlattenSeasons).GetFields())
|
return _values.Values.ToArray();
|
||||||
{
|
|
||||||
var attributes = field.GetCustomAttributes(typeof(JsonPropertyAttribute), false);
|
|
||||||
if (attributes.Length == 0)
|
|
||||||
{
|
|
||||||
continue;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
var attribute = attributes[0] as JsonPropertyAttribute;
|
public override string ToString() => Value.ToString();
|
||||||
if (attribute != null && attribute.PropertyName == value)
|
|
||||||
{
|
|
||||||
var enumVal = field.GetValue(null);
|
|
||||||
|
|
||||||
if (enumVal is FlattenSeasons)
|
public bool IsKnown()
|
||||||
{
|
{
|
||||||
return (FlattenSeasons)enumVal;
|
return _knownValues.ContainsKey(Value);
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
throw new Exception($"Unknown value {value} for enum FlattenSeasons");
|
public override bool Equals(object? obj) => Equals(obj as FlattenSeasons);
|
||||||
|
|
||||||
|
public bool Equals(FlattenSeasons? other)
|
||||||
|
{
|
||||||
|
if (ReferenceEquals(this, other)) return true;
|
||||||
|
if (other is null) return false;
|
||||||
|
return string.Equals(Value, other.Value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public override int GetHashCode() => Value.GetHashCode();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -12,7 +12,10 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
using LukeHagar.PlexAPI.SDK.Models.Requests;
|
using LukeHagar.PlexAPI.SDK.Models.Requests;
|
||||||
using LukeHagar.PlexAPI.SDK.Utils;
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Concurrent;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
|
||||||
public class Friend
|
public class Friend
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -87,7 +87,7 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
/// Identifier for the view mode.
|
/// Identifier for the view mode.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonProperty("viewMode")]
|
[JsonProperty("viewMode")]
|
||||||
public string ViewMode { get; set; } = default!;
|
public string? ViewMode { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// An array of actor entries for media items.
|
/// An array of actor entries for media items.
|
||||||
|
|||||||
@@ -10,6 +10,11 @@
|
|||||||
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
||||||
{
|
{
|
||||||
using LukeHagar.PlexAPI.SDK.Utils;
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Concurrent;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The type of media to retrieve or filter by.<br/>
|
/// The type of media to retrieve or filter by.<br/>
|
||||||
@@ -23,17 +28,73 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
///
|
///
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public enum GetActorsLibraryQueryParamType
|
[JsonConverter(typeof(OpenEnumConverter))]
|
||||||
|
public class GetActorsLibraryQueryParamType : IEquatable<GetActorsLibraryQueryParamType>
|
||||||
{
|
{
|
||||||
Movie = 1,
|
public static readonly GetActorsLibraryQueryParamType Movie = new GetActorsLibraryQueryParamType(1);
|
||||||
TvShow = 2,
|
public static readonly GetActorsLibraryQueryParamType TvShow = new GetActorsLibraryQueryParamType(2);
|
||||||
Season = 3,
|
public static readonly GetActorsLibraryQueryParamType Season = new GetActorsLibraryQueryParamType(3);
|
||||||
Episode = 4,
|
public static readonly GetActorsLibraryQueryParamType Episode = new GetActorsLibraryQueryParamType(4);
|
||||||
Artist = 5,
|
public static readonly GetActorsLibraryQueryParamType Artist = new GetActorsLibraryQueryParamType(5);
|
||||||
Album = 6,
|
public static readonly GetActorsLibraryQueryParamType Album = new GetActorsLibraryQueryParamType(6);
|
||||||
Track = 7,
|
public static readonly GetActorsLibraryQueryParamType Track = new GetActorsLibraryQueryParamType(7);
|
||||||
PhotoAlbum = 8,
|
public static readonly GetActorsLibraryQueryParamType PhotoAlbum = new GetActorsLibraryQueryParamType(8);
|
||||||
Photo = 9,
|
public static readonly GetActorsLibraryQueryParamType Photo = new GetActorsLibraryQueryParamType(9);
|
||||||
|
|
||||||
|
private static readonly Dictionary <long, GetActorsLibraryQueryParamType> _knownValues =
|
||||||
|
new Dictionary <long, GetActorsLibraryQueryParamType> ()
|
||||||
|
{
|
||||||
|
[1] = Movie,
|
||||||
|
[2] = TvShow,
|
||||||
|
[3] = Season,
|
||||||
|
[4] = Episode,
|
||||||
|
[5] = Artist,
|
||||||
|
[6] = Album,
|
||||||
|
[7] = Track,
|
||||||
|
[8] = PhotoAlbum,
|
||||||
|
[9] = Photo
|
||||||
|
};
|
||||||
|
|
||||||
|
private static readonly ConcurrentDictionary<long, GetActorsLibraryQueryParamType> _values =
|
||||||
|
new ConcurrentDictionary<long, GetActorsLibraryQueryParamType>(_knownValues);
|
||||||
|
|
||||||
|
private GetActorsLibraryQueryParamType(long value)
|
||||||
|
{
|
||||||
|
Value = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
public long Value { get; }
|
||||||
|
|
||||||
|
public static GetActorsLibraryQueryParamType Of(long value)
|
||||||
|
{
|
||||||
|
return _values.GetOrAdd(value, _ => new GetActorsLibraryQueryParamType(value));
|
||||||
|
}
|
||||||
|
|
||||||
|
public static implicit operator GetActorsLibraryQueryParamType(long value) => Of(value);
|
||||||
|
public static implicit operator long(GetActorsLibraryQueryParamType getactorslibraryqueryparamtype) => getactorslibraryqueryparamtype.Value;
|
||||||
|
|
||||||
|
public static GetActorsLibraryQueryParamType[] Values()
|
||||||
|
{
|
||||||
|
return _values.Values.ToArray();
|
||||||
|
}
|
||||||
|
|
||||||
|
public override string ToString() => Value.ToString();
|
||||||
|
|
||||||
|
public bool IsKnown()
|
||||||
|
{
|
||||||
|
return _knownValues.ContainsKey(Value);
|
||||||
|
}
|
||||||
|
|
||||||
|
public override bool Equals(object? obj) => Equals(obj as GetActorsLibraryQueryParamType);
|
||||||
|
|
||||||
|
public bool Equals(GetActorsLibraryQueryParamType? other)
|
||||||
|
{
|
||||||
|
if (ReferenceEquals(this, other)) return true;
|
||||||
|
if (other is null) return false;
|
||||||
|
return string.Equals(Value, other.Value);
|
||||||
|
}
|
||||||
|
|
||||||
|
public override int GetHashCode() => Value.GetHashCode();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -11,6 +11,11 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
{
|
{
|
||||||
using LukeHagar.PlexAPI.SDK.Models.Requests;
|
using LukeHagar.PlexAPI.SDK.Models.Requests;
|
||||||
using LukeHagar.PlexAPI.SDK.Utils;
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Concurrent;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
|
||||||
public class GetActorsLibraryRequest
|
public class GetActorsLibraryRequest
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -12,7 +12,10 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
using LukeHagar.PlexAPI.SDK.Models.Requests;
|
using LukeHagar.PlexAPI.SDK.Models.Requests;
|
||||||
using LukeHagar.PlexAPI.SDK.Utils;
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Concurrent;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
|
||||||
public class GetAllLibrariesDirectory
|
public class GetAllLibrariesDirectory
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -12,65 +12,83 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
using LukeHagar.PlexAPI.SDK.Utils;
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
using System;
|
using System;
|
||||||
|
using System.Collections.Concurrent;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The library type
|
/// The library type
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public enum GetAllLibrariesType
|
[JsonConverter(typeof(OpenEnumConverter))]
|
||||||
|
public class GetAllLibrariesType : IEquatable<GetAllLibrariesType>
|
||||||
{
|
{
|
||||||
[JsonProperty("movie")]
|
public static readonly GetAllLibrariesType Movie = new GetAllLibrariesType("movie");
|
||||||
Movie,
|
public static readonly GetAllLibrariesType TvShow = new GetAllLibrariesType("show");
|
||||||
[JsonProperty("show")]
|
public static readonly GetAllLibrariesType Season = new GetAllLibrariesType("season");
|
||||||
TvShow,
|
public static readonly GetAllLibrariesType Episode = new GetAllLibrariesType("episode");
|
||||||
[JsonProperty("season")]
|
public static readonly GetAllLibrariesType Artist = new GetAllLibrariesType("artist");
|
||||||
Season,
|
public static readonly GetAllLibrariesType Album = new GetAllLibrariesType("album");
|
||||||
[JsonProperty("episode")]
|
public static readonly GetAllLibrariesType Track = new GetAllLibrariesType("track");
|
||||||
Episode,
|
public static readonly GetAllLibrariesType PhotoAlbum = new GetAllLibrariesType("photoalbum");
|
||||||
[JsonProperty("artist")]
|
public static readonly GetAllLibrariesType Photo = new GetAllLibrariesType("photo");
|
||||||
Artist,
|
public static readonly GetAllLibrariesType Collection = new GetAllLibrariesType("collection");
|
||||||
[JsonProperty("album")]
|
|
||||||
Album,
|
private static readonly Dictionary <string, GetAllLibrariesType> _knownValues =
|
||||||
[JsonProperty("track")]
|
new Dictionary <string, GetAllLibrariesType> ()
|
||||||
Track,
|
{
|
||||||
[JsonProperty("photoalbum")]
|
["movie"] = Movie,
|
||||||
PhotoAlbum,
|
["show"] = TvShow,
|
||||||
[JsonProperty("photo")]
|
["season"] = Season,
|
||||||
Photo,
|
["episode"] = Episode,
|
||||||
[JsonProperty("collection")]
|
["artist"] = Artist,
|
||||||
Collection,
|
["album"] = Album,
|
||||||
|
["track"] = Track,
|
||||||
|
["photoalbum"] = PhotoAlbum,
|
||||||
|
["photo"] = Photo,
|
||||||
|
["collection"] = Collection
|
||||||
|
};
|
||||||
|
|
||||||
|
private static readonly ConcurrentDictionary<string, GetAllLibrariesType> _values =
|
||||||
|
new ConcurrentDictionary<string, GetAllLibrariesType>(_knownValues);
|
||||||
|
|
||||||
|
private GetAllLibrariesType(string value)
|
||||||
|
{
|
||||||
|
if (value == null) throw new ArgumentNullException(nameof(value));
|
||||||
|
Value = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static class GetAllLibrariesTypeExtension
|
public string Value { get; }
|
||||||
|
|
||||||
|
public static GetAllLibrariesType Of(string value)
|
||||||
{
|
{
|
||||||
public static string Value(this GetAllLibrariesType value)
|
return _values.GetOrAdd(value, _ => new GetAllLibrariesType(value));
|
||||||
{
|
|
||||||
return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString())[0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public static GetAllLibrariesType ToEnum(this string value)
|
public static implicit operator GetAllLibrariesType(string value) => Of(value);
|
||||||
|
public static implicit operator string(GetAllLibrariesType getalllibrariestype) => getalllibrariestype.Value;
|
||||||
|
|
||||||
|
public static GetAllLibrariesType[] Values()
|
||||||
{
|
{
|
||||||
foreach(var field in typeof(GetAllLibrariesType).GetFields())
|
return _values.Values.ToArray();
|
||||||
{
|
|
||||||
var attributes = field.GetCustomAttributes(typeof(JsonPropertyAttribute), false);
|
|
||||||
if (attributes.Length == 0)
|
|
||||||
{
|
|
||||||
continue;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
var attribute = attributes[0] as JsonPropertyAttribute;
|
public override string ToString() => Value.ToString();
|
||||||
if (attribute != null && attribute.PropertyName == value)
|
|
||||||
{
|
|
||||||
var enumVal = field.GetValue(null);
|
|
||||||
|
|
||||||
if (enumVal is GetAllLibrariesType)
|
public bool IsKnown()
|
||||||
{
|
{
|
||||||
return (GetAllLibrariesType)enumVal;
|
return _knownValues.ContainsKey(Value);
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
throw new Exception($"Unknown value {value} for enum GetAllLibrariesType");
|
public override bool Equals(object? obj) => Equals(obj as GetAllLibrariesType);
|
||||||
|
|
||||||
|
public bool Equals(GetAllLibrariesType? other)
|
||||||
|
{
|
||||||
|
if (ReferenceEquals(this, other)) return true;
|
||||||
|
if (other is null) return false;
|
||||||
|
return string.Equals(Value, other.Value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public override int GetHashCode() => Value.GetHashCode();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -10,6 +10,11 @@
|
|||||||
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
||||||
{
|
{
|
||||||
using LukeHagar.PlexAPI.SDK.Utils;
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Concurrent;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The type of media to retrieve or filter by.<br/>
|
/// The type of media to retrieve or filter by.<br/>
|
||||||
@@ -23,17 +28,73 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
///
|
///
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public enum GetCountriesLibraryQueryParamType
|
[JsonConverter(typeof(OpenEnumConverter))]
|
||||||
|
public class GetCountriesLibraryQueryParamType : IEquatable<GetCountriesLibraryQueryParamType>
|
||||||
{
|
{
|
||||||
Movie = 1,
|
public static readonly GetCountriesLibraryQueryParamType Movie = new GetCountriesLibraryQueryParamType(1);
|
||||||
TvShow = 2,
|
public static readonly GetCountriesLibraryQueryParamType TvShow = new GetCountriesLibraryQueryParamType(2);
|
||||||
Season = 3,
|
public static readonly GetCountriesLibraryQueryParamType Season = new GetCountriesLibraryQueryParamType(3);
|
||||||
Episode = 4,
|
public static readonly GetCountriesLibraryQueryParamType Episode = new GetCountriesLibraryQueryParamType(4);
|
||||||
Artist = 5,
|
public static readonly GetCountriesLibraryQueryParamType Artist = new GetCountriesLibraryQueryParamType(5);
|
||||||
Album = 6,
|
public static readonly GetCountriesLibraryQueryParamType Album = new GetCountriesLibraryQueryParamType(6);
|
||||||
Track = 7,
|
public static readonly GetCountriesLibraryQueryParamType Track = new GetCountriesLibraryQueryParamType(7);
|
||||||
PhotoAlbum = 8,
|
public static readonly GetCountriesLibraryQueryParamType PhotoAlbum = new GetCountriesLibraryQueryParamType(8);
|
||||||
Photo = 9,
|
public static readonly GetCountriesLibraryQueryParamType Photo = new GetCountriesLibraryQueryParamType(9);
|
||||||
|
|
||||||
|
private static readonly Dictionary <long, GetCountriesLibraryQueryParamType> _knownValues =
|
||||||
|
new Dictionary <long, GetCountriesLibraryQueryParamType> ()
|
||||||
|
{
|
||||||
|
[1] = Movie,
|
||||||
|
[2] = TvShow,
|
||||||
|
[3] = Season,
|
||||||
|
[4] = Episode,
|
||||||
|
[5] = Artist,
|
||||||
|
[6] = Album,
|
||||||
|
[7] = Track,
|
||||||
|
[8] = PhotoAlbum,
|
||||||
|
[9] = Photo
|
||||||
|
};
|
||||||
|
|
||||||
|
private static readonly ConcurrentDictionary<long, GetCountriesLibraryQueryParamType> _values =
|
||||||
|
new ConcurrentDictionary<long, GetCountriesLibraryQueryParamType>(_knownValues);
|
||||||
|
|
||||||
|
private GetCountriesLibraryQueryParamType(long value)
|
||||||
|
{
|
||||||
|
Value = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
public long Value { get; }
|
||||||
|
|
||||||
|
public static GetCountriesLibraryQueryParamType Of(long value)
|
||||||
|
{
|
||||||
|
return _values.GetOrAdd(value, _ => new GetCountriesLibraryQueryParamType(value));
|
||||||
|
}
|
||||||
|
|
||||||
|
public static implicit operator GetCountriesLibraryQueryParamType(long value) => Of(value);
|
||||||
|
public static implicit operator long(GetCountriesLibraryQueryParamType getcountrieslibraryqueryparamtype) => getcountrieslibraryqueryparamtype.Value;
|
||||||
|
|
||||||
|
public static GetCountriesLibraryQueryParamType[] Values()
|
||||||
|
{
|
||||||
|
return _values.Values.ToArray();
|
||||||
|
}
|
||||||
|
|
||||||
|
public override string ToString() => Value.ToString();
|
||||||
|
|
||||||
|
public bool IsKnown()
|
||||||
|
{
|
||||||
|
return _knownValues.ContainsKey(Value);
|
||||||
|
}
|
||||||
|
|
||||||
|
public override bool Equals(object? obj) => Equals(obj as GetCountriesLibraryQueryParamType);
|
||||||
|
|
||||||
|
public bool Equals(GetCountriesLibraryQueryParamType? other)
|
||||||
|
{
|
||||||
|
if (ReferenceEquals(this, other)) return true;
|
||||||
|
if (other is null) return false;
|
||||||
|
return string.Equals(Value, other.Value);
|
||||||
|
}
|
||||||
|
|
||||||
|
public override int GetHashCode() => Value.GetHashCode();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -11,6 +11,11 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
{
|
{
|
||||||
using LukeHagar.PlexAPI.SDK.Models.Requests;
|
using LukeHagar.PlexAPI.SDK.Models.Requests;
|
||||||
using LukeHagar.PlexAPI.SDK.Utils;
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Concurrent;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
|
||||||
public class GetCountriesLibraryRequest
|
public class GetCountriesLibraryRequest
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -10,6 +10,11 @@
|
|||||||
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
||||||
{
|
{
|
||||||
using LukeHagar.PlexAPI.SDK.Utils;
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Concurrent;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The type of media to retrieve or filter by.<br/>
|
/// The type of media to retrieve or filter by.<br/>
|
||||||
@@ -23,17 +28,73 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
///
|
///
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public enum GetGenresLibraryQueryParamType
|
[JsonConverter(typeof(OpenEnumConverter))]
|
||||||
|
public class GetGenresLibraryQueryParamType : IEquatable<GetGenresLibraryQueryParamType>
|
||||||
{
|
{
|
||||||
Movie = 1,
|
public static readonly GetGenresLibraryQueryParamType Movie = new GetGenresLibraryQueryParamType(1);
|
||||||
TvShow = 2,
|
public static readonly GetGenresLibraryQueryParamType TvShow = new GetGenresLibraryQueryParamType(2);
|
||||||
Season = 3,
|
public static readonly GetGenresLibraryQueryParamType Season = new GetGenresLibraryQueryParamType(3);
|
||||||
Episode = 4,
|
public static readonly GetGenresLibraryQueryParamType Episode = new GetGenresLibraryQueryParamType(4);
|
||||||
Artist = 5,
|
public static readonly GetGenresLibraryQueryParamType Artist = new GetGenresLibraryQueryParamType(5);
|
||||||
Album = 6,
|
public static readonly GetGenresLibraryQueryParamType Album = new GetGenresLibraryQueryParamType(6);
|
||||||
Track = 7,
|
public static readonly GetGenresLibraryQueryParamType Track = new GetGenresLibraryQueryParamType(7);
|
||||||
PhotoAlbum = 8,
|
public static readonly GetGenresLibraryQueryParamType PhotoAlbum = new GetGenresLibraryQueryParamType(8);
|
||||||
Photo = 9,
|
public static readonly GetGenresLibraryQueryParamType Photo = new GetGenresLibraryQueryParamType(9);
|
||||||
|
|
||||||
|
private static readonly Dictionary <long, GetGenresLibraryQueryParamType> _knownValues =
|
||||||
|
new Dictionary <long, GetGenresLibraryQueryParamType> ()
|
||||||
|
{
|
||||||
|
[1] = Movie,
|
||||||
|
[2] = TvShow,
|
||||||
|
[3] = Season,
|
||||||
|
[4] = Episode,
|
||||||
|
[5] = Artist,
|
||||||
|
[6] = Album,
|
||||||
|
[7] = Track,
|
||||||
|
[8] = PhotoAlbum,
|
||||||
|
[9] = Photo
|
||||||
|
};
|
||||||
|
|
||||||
|
private static readonly ConcurrentDictionary<long, GetGenresLibraryQueryParamType> _values =
|
||||||
|
new ConcurrentDictionary<long, GetGenresLibraryQueryParamType>(_knownValues);
|
||||||
|
|
||||||
|
private GetGenresLibraryQueryParamType(long value)
|
||||||
|
{
|
||||||
|
Value = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
public long Value { get; }
|
||||||
|
|
||||||
|
public static GetGenresLibraryQueryParamType Of(long value)
|
||||||
|
{
|
||||||
|
return _values.GetOrAdd(value, _ => new GetGenresLibraryQueryParamType(value));
|
||||||
|
}
|
||||||
|
|
||||||
|
public static implicit operator GetGenresLibraryQueryParamType(long value) => Of(value);
|
||||||
|
public static implicit operator long(GetGenresLibraryQueryParamType getgenreslibraryqueryparamtype) => getgenreslibraryqueryparamtype.Value;
|
||||||
|
|
||||||
|
public static GetGenresLibraryQueryParamType[] Values()
|
||||||
|
{
|
||||||
|
return _values.Values.ToArray();
|
||||||
|
}
|
||||||
|
|
||||||
|
public override string ToString() => Value.ToString();
|
||||||
|
|
||||||
|
public bool IsKnown()
|
||||||
|
{
|
||||||
|
return _knownValues.ContainsKey(Value);
|
||||||
|
}
|
||||||
|
|
||||||
|
public override bool Equals(object? obj) => Equals(obj as GetGenresLibraryQueryParamType);
|
||||||
|
|
||||||
|
public bool Equals(GetGenresLibraryQueryParamType? other)
|
||||||
|
{
|
||||||
|
if (ReferenceEquals(this, other)) return true;
|
||||||
|
if (other is null) return false;
|
||||||
|
return string.Equals(Value, other.Value);
|
||||||
|
}
|
||||||
|
|
||||||
|
public override int GetHashCode() => Value.GetHashCode();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -11,6 +11,11 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
{
|
{
|
||||||
using LukeHagar.PlexAPI.SDK.Models.Requests;
|
using LukeHagar.PlexAPI.SDK.Models.Requests;
|
||||||
using LukeHagar.PlexAPI.SDK.Utils;
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Concurrent;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
|
||||||
public class GetGenresLibraryRequest
|
public class GetGenresLibraryRequest
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -15,7 +15,10 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
public class GetLibraryItemsCollection
|
public class GetLibraryItemsCollection
|
||||||
{
|
{
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The user-made collection this media item belongs to
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("tag")]
|
[JsonProperty("tag")]
|
||||||
public string? Tag { get; set; }
|
public string Tag { get; set; } = default!;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -15,7 +15,21 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
public class GetLibraryItemsCountry
|
public class GetLibraryItemsCountry
|
||||||
{
|
{
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The unique identifier for the country.<br/>
|
||||||
|
///
|
||||||
|
/// <remarks>
|
||||||
|
/// NOTE: This is different for each Plex server and is not globally unique.<br/>
|
||||||
|
///
|
||||||
|
/// </remarks>
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("id")]
|
||||||
|
public int Id { get; set; } = default!;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The country of origin of this media item
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("tag")]
|
[JsonProperty("tag")]
|
||||||
public string? Tag { get; set; }
|
public string Tag { get; set; } = default!;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -15,7 +15,22 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
public class GetLibraryItemsDirector
|
public class GetLibraryItemsDirector
|
||||||
{
|
{
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Unique identifier for the director.
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("id")]
|
||||||
|
public int Id { get; set; } = default!;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The role of Director
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("tag")]
|
[JsonProperty("tag")]
|
||||||
public string? Tag { get; set; }
|
public string Tag { get; set; } = default!;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The absolute URL of the thumbnail image for the director.
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("thumb")]
|
||||||
|
public string? Thumb { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -29,8 +29,5 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
|
|
||||||
[JsonProperty("type")]
|
[JsonProperty("type")]
|
||||||
public string Type { get; set; } = default!;
|
public string Type { get; set; } = default!;
|
||||||
|
|
||||||
[JsonProperty("advanced")]
|
|
||||||
public bool? Advanced { get; set; }
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -15,7 +15,25 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
public class GetLibraryItemsGenre
|
public class GetLibraryItemsGenre
|
||||||
{
|
{
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The unique identifier for the genre.<br/>
|
||||||
|
///
|
||||||
|
/// <remarks>
|
||||||
|
/// NOTE: This is different for each Plex server and is not globally unique.<br/>
|
||||||
|
///
|
||||||
|
/// </remarks>
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("id")]
|
||||||
|
public int Id { get; set; } = default!;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The genre name of this media-item<br/>
|
||||||
|
///
|
||||||
|
/// <remarks>
|
||||||
|
///
|
||||||
|
/// </remarks>
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("tag")]
|
[JsonProperty("tag")]
|
||||||
public string? Tag { get; set; }
|
public string Tag { get; set; } = default!;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -12,14 +12,13 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
using LukeHagar.PlexAPI.SDK.Utils;
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
public class MediaGuid
|
public class GetLibraryItemsGuids
|
||||||
{
|
{
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Can be one of the following formats:<br/>
|
/// The unique identifier for the Guid. Can be prefixed with imdb://, tmdb://, tvdb://<br/>
|
||||||
///
|
///
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// imdb://tt13015952, tmdb://2434012, tvdb://7945991<br/>
|
|
||||||
///
|
///
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -13,6 +13,13 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Indicates if the part has a thumbnail.<br/>
|
||||||
|
///
|
||||||
|
/// <remarks>
|
||||||
|
///
|
||||||
|
/// </remarks>
|
||||||
|
/// </summary>
|
||||||
public enum GetLibraryItemsHasThumbnail
|
public enum GetLibraryItemsHasThumbnail
|
||||||
{
|
{
|
||||||
[JsonProperty("0")]
|
[JsonProperty("0")]
|
||||||
|
|||||||
@@ -12,6 +12,10 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
using LukeHagar.PlexAPI.SDK.Models.Requests;
|
using LukeHagar.PlexAPI.SDK.Models.Requests;
|
||||||
using LukeHagar.PlexAPI.SDK.Utils;
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Concurrent;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
|
||||||
public class GetLibraryItemsImage
|
public class GetLibraryItemsImage
|
||||||
{
|
{
|
||||||
@@ -20,7 +24,7 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
public string Alt { get; set; } = default!;
|
public string Alt { get; set; } = default!;
|
||||||
|
|
||||||
[JsonProperty("type")]
|
[JsonProperty("type")]
|
||||||
public GetLibraryItemsLibraryResponse200Type Type { get; set; } = default!;
|
public GetLibraryItemsLibraryResponseType Type { get; set; } = default!;
|
||||||
|
|
||||||
[JsonProperty("url")]
|
[JsonProperty("url")]
|
||||||
public string Url { get; set; } = default!;
|
public string Url { get; set; } = default!;
|
||||||
|
|||||||
@@ -1,64 +0,0 @@
|
|||||||
//------------------------------------------------------------------------------
|
|
||||||
// <auto-generated>
|
|
||||||
// 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.
|
|
||||||
// </auto-generated>
|
|
||||||
//------------------------------------------------------------------------------
|
|
||||||
#nullable enable
|
|
||||||
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|
||||||
{
|
|
||||||
using LukeHagar.PlexAPI.SDK.Utils;
|
|
||||||
using Newtonsoft.Json;
|
|
||||||
using System;
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// The direction of the sort. Can be either `asc` or `desc`.<br/>
|
|
||||||
///
|
|
||||||
/// <remarks>
|
|
||||||
///
|
|
||||||
/// </remarks>
|
|
||||||
/// </summary>
|
|
||||||
public enum GetLibraryItemsLibraryActiveDirection
|
|
||||||
{
|
|
||||||
[JsonProperty("asc")]
|
|
||||||
Ascending,
|
|
||||||
[JsonProperty("desc")]
|
|
||||||
Descending,
|
|
||||||
}
|
|
||||||
|
|
||||||
public static class GetLibraryItemsLibraryActiveDirectionExtension
|
|
||||||
{
|
|
||||||
public static string Value(this GetLibraryItemsLibraryActiveDirection value)
|
|
||||||
{
|
|
||||||
return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString())[0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
|
|
||||||
}
|
|
||||||
|
|
||||||
public static GetLibraryItemsLibraryActiveDirection ToEnum(this string value)
|
|
||||||
{
|
|
||||||
foreach(var field in typeof(GetLibraryItemsLibraryActiveDirection).GetFields())
|
|
||||||
{
|
|
||||||
var attributes = field.GetCustomAttributes(typeof(JsonPropertyAttribute), false);
|
|
||||||
if (attributes.Length == 0)
|
|
||||||
{
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
var attribute = attributes[0] as JsonPropertyAttribute;
|
|
||||||
if (attribute != null && attribute.PropertyName == value)
|
|
||||||
{
|
|
||||||
var enumVal = field.GetValue(null);
|
|
||||||
|
|
||||||
if (enumVal is GetLibraryItemsLibraryActiveDirection)
|
|
||||||
{
|
|
||||||
return (GetLibraryItemsLibraryActiveDirection)enumVal;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
throw new Exception($"Unknown value {value} for enum GetLibraryItemsLibraryActiveDirection");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,64 +0,0 @@
|
|||||||
//------------------------------------------------------------------------------
|
|
||||||
// <auto-generated>
|
|
||||||
// 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.
|
|
||||||
// </auto-generated>
|
|
||||||
//------------------------------------------------------------------------------
|
|
||||||
#nullable enable
|
|
||||||
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|
||||||
{
|
|
||||||
using LukeHagar.PlexAPI.SDK.Utils;
|
|
||||||
using Newtonsoft.Json;
|
|
||||||
using System;
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// The direction of the sort. Can be either `asc` or `desc`.<br/>
|
|
||||||
///
|
|
||||||
/// <remarks>
|
|
||||||
///
|
|
||||||
/// </remarks>
|
|
||||||
/// </summary>
|
|
||||||
public enum GetLibraryItemsLibraryDefaultDirection
|
|
||||||
{
|
|
||||||
[JsonProperty("asc")]
|
|
||||||
Ascending,
|
|
||||||
[JsonProperty("desc")]
|
|
||||||
Descending,
|
|
||||||
}
|
|
||||||
|
|
||||||
public static class GetLibraryItemsLibraryDefaultDirectionExtension
|
|
||||||
{
|
|
||||||
public static string Value(this GetLibraryItemsLibraryDefaultDirection value)
|
|
||||||
{
|
|
||||||
return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString())[0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
|
|
||||||
}
|
|
||||||
|
|
||||||
public static GetLibraryItemsLibraryDefaultDirection ToEnum(this string value)
|
|
||||||
{
|
|
||||||
foreach(var field in typeof(GetLibraryItemsLibraryDefaultDirection).GetFields())
|
|
||||||
{
|
|
||||||
var attributes = field.GetCustomAttributes(typeof(JsonPropertyAttribute), false);
|
|
||||||
if (attributes.Length == 0)
|
|
||||||
{
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
var attribute = attributes[0] as JsonPropertyAttribute;
|
|
||||||
if (attribute != null && attribute.PropertyName == value)
|
|
||||||
{
|
|
||||||
var enumVal = field.GetValue(null);
|
|
||||||
|
|
||||||
if (enumVal is GetLibraryItemsLibraryDefaultDirection)
|
|
||||||
{
|
|
||||||
return (GetLibraryItemsLibraryDefaultDirection)enumVal;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
throw new Exception($"Unknown value {value} for enum GetLibraryItemsLibraryDefaultDirection");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -1,30 +0,0 @@
|
|||||||
//------------------------------------------------------------------------------
|
|
||||||
// <auto-generated>
|
|
||||||
// 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.
|
|
||||||
// </auto-generated>
|
|
||||||
//------------------------------------------------------------------------------
|
|
||||||
#nullable enable
|
|
||||||
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|
||||||
{
|
|
||||||
using LukeHagar.PlexAPI.SDK.Utils;
|
|
||||||
using Newtonsoft.Json;
|
|
||||||
|
|
||||||
public class GetLibraryItemsLibraryField
|
|
||||||
{
|
|
||||||
|
|
||||||
[JsonProperty("key")]
|
|
||||||
public string Key { get; set; } = default!;
|
|
||||||
|
|
||||||
[JsonProperty("title")]
|
|
||||||
public string Title { get; set; } = default!;
|
|
||||||
|
|
||||||
[JsonProperty("type")]
|
|
||||||
public string Type { get; set; } = default!;
|
|
||||||
|
|
||||||
[JsonProperty("subType")]
|
|
||||||
public string? SubType { get; set; }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,26 +0,0 @@
|
|||||||
//------------------------------------------------------------------------------
|
|
||||||
// <auto-generated>
|
|
||||||
// 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.
|
|
||||||
// </auto-generated>
|
|
||||||
//------------------------------------------------------------------------------
|
|
||||||
#nullable enable
|
|
||||||
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|
||||||
{
|
|
||||||
using LukeHagar.PlexAPI.SDK.Models.Requests;
|
|
||||||
using LukeHagar.PlexAPI.SDK.Utils;
|
|
||||||
using Newtonsoft.Json;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
|
|
||||||
public class GetLibraryItemsLibraryFieldType
|
|
||||||
{
|
|
||||||
|
|
||||||
[JsonProperty("type")]
|
|
||||||
public string Type { get; set; } = default!;
|
|
||||||
|
|
||||||
[JsonProperty("Operator")]
|
|
||||||
public List<GetLibraryItemsLibraryOperator> Operator { get; set; } = default!;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -0,0 +1,203 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// 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.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
#nullable enable
|
||||||
|
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
||||||
|
{
|
||||||
|
using LukeHagar.PlexAPI.SDK.Models.Requests;
|
||||||
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
using Newtonsoft.Json.Linq;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Numerics;
|
||||||
|
using System.Reflection;
|
||||||
|
|
||||||
|
|
||||||
|
public class GetLibraryItemsLibraryOptimizedForStreamingType
|
||||||
|
{
|
||||||
|
private GetLibraryItemsLibraryOptimizedForStreamingType(string value) { Value = value; }
|
||||||
|
|
||||||
|
public string Value { get; private set; }
|
||||||
|
public static GetLibraryItemsLibraryOptimizedForStreamingType GetLibraryItemsOptimizedForStreaming1 { get { return new GetLibraryItemsLibraryOptimizedForStreamingType("get-library-items_optimizedForStreaming_1"); } }
|
||||||
|
|
||||||
|
public static GetLibraryItemsLibraryOptimizedForStreamingType Boolean { get { return new GetLibraryItemsLibraryOptimizedForStreamingType("boolean"); } }
|
||||||
|
|
||||||
|
public static GetLibraryItemsLibraryOptimizedForStreamingType Null { get { return new GetLibraryItemsLibraryOptimizedForStreamingType("null"); } }
|
||||||
|
|
||||||
|
public override string ToString() { return Value; }
|
||||||
|
public static implicit operator String(GetLibraryItemsLibraryOptimizedForStreamingType v) { return v.Value; }
|
||||||
|
public static GetLibraryItemsLibraryOptimizedForStreamingType FromString(string v) {
|
||||||
|
switch(v) {
|
||||||
|
case "get-library-items_optimizedForStreaming_1": return GetLibraryItemsOptimizedForStreaming1;
|
||||||
|
case "boolean": return Boolean;
|
||||||
|
case "null": return Null;
|
||||||
|
default: throw new ArgumentException("Invalid value for GetLibraryItemsLibraryOptimizedForStreamingType");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
public override bool Equals(object? obj)
|
||||||
|
{
|
||||||
|
if (obj == null || GetType() != obj.GetType())
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return Value.Equals(((GetLibraryItemsLibraryOptimizedForStreamingType)obj).Value);
|
||||||
|
}
|
||||||
|
|
||||||
|
public override int GetHashCode()
|
||||||
|
{
|
||||||
|
return Value.GetHashCode();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Has this media been optimized for streaming. NOTE: This can be 0, 1, false or true<br/>
|
||||||
|
///
|
||||||
|
/// <remarks>
|
||||||
|
///
|
||||||
|
/// </remarks>
|
||||||
|
/// </summary>
|
||||||
|
[JsonConverter(typeof(GetLibraryItemsLibraryOptimizedForStreaming.GetLibraryItemsLibraryOptimizedForStreamingConverter))]
|
||||||
|
public class GetLibraryItemsLibraryOptimizedForStreaming {
|
||||||
|
public GetLibraryItemsLibraryOptimizedForStreaming(GetLibraryItemsLibraryOptimizedForStreamingType type) {
|
||||||
|
Type = type;
|
||||||
|
}
|
||||||
|
|
||||||
|
[SpeakeasyMetadata("form:explode=true")]
|
||||||
|
public GetLibraryItemsOptimizedForStreaming1? GetLibraryItemsOptimizedForStreaming1 { get; set; }
|
||||||
|
|
||||||
|
[SpeakeasyMetadata("form:explode=true")]
|
||||||
|
public bool? Boolean { get; set; }
|
||||||
|
|
||||||
|
public GetLibraryItemsLibraryOptimizedForStreamingType Type { get; set; }
|
||||||
|
|
||||||
|
|
||||||
|
public static GetLibraryItemsLibraryOptimizedForStreaming CreateGetLibraryItemsOptimizedForStreaming1(GetLibraryItemsOptimizedForStreaming1 getLibraryItemsOptimizedForStreaming1) {
|
||||||
|
GetLibraryItemsLibraryOptimizedForStreamingType typ = GetLibraryItemsLibraryOptimizedForStreamingType.GetLibraryItemsOptimizedForStreaming1;
|
||||||
|
|
||||||
|
GetLibraryItemsLibraryOptimizedForStreaming res = new GetLibraryItemsLibraryOptimizedForStreaming(typ);
|
||||||
|
res.GetLibraryItemsOptimizedForStreaming1 = getLibraryItemsOptimizedForStreaming1;
|
||||||
|
return res;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static GetLibraryItemsLibraryOptimizedForStreaming CreateBoolean(bool boolean) {
|
||||||
|
GetLibraryItemsLibraryOptimizedForStreamingType typ = GetLibraryItemsLibraryOptimizedForStreamingType.Boolean;
|
||||||
|
|
||||||
|
GetLibraryItemsLibraryOptimizedForStreaming res = new GetLibraryItemsLibraryOptimizedForStreaming(typ);
|
||||||
|
res.Boolean = boolean;
|
||||||
|
return res;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static GetLibraryItemsLibraryOptimizedForStreaming CreateNull() {
|
||||||
|
GetLibraryItemsLibraryOptimizedForStreamingType typ = GetLibraryItemsLibraryOptimizedForStreamingType.Null;
|
||||||
|
return new GetLibraryItemsLibraryOptimizedForStreaming(typ);
|
||||||
|
}
|
||||||
|
|
||||||
|
public class GetLibraryItemsLibraryOptimizedForStreamingConverter : JsonConverter
|
||||||
|
{
|
||||||
|
|
||||||
|
public override bool CanConvert(System.Type objectType) => objectType == typeof(GetLibraryItemsLibraryOptimizedForStreaming);
|
||||||
|
|
||||||
|
public override bool CanRead => true;
|
||||||
|
|
||||||
|
public override object? ReadJson(JsonReader reader, System.Type objectType, object? existingValue, JsonSerializer serializer)
|
||||||
|
{
|
||||||
|
var json = JRaw.Create(reader).ToString();
|
||||||
|
if (json == "null")
|
||||||
|
{
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
var fallbackCandidates = new List<(System.Type, object, string)>();
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
return new GetLibraryItemsLibraryOptimizedForStreaming(GetLibraryItemsLibraryOptimizedForStreamingType.GetLibraryItemsOptimizedForStreaming1)
|
||||||
|
{
|
||||||
|
GetLibraryItemsOptimizedForStreaming1 = ResponseBodyDeserializer.DeserializeUndiscriminatedUnionMember<GetLibraryItemsOptimizedForStreaming1>(json)
|
||||||
|
};
|
||||||
|
}
|
||||||
|
catch (ResponseBodyDeserializer.MissingMemberException)
|
||||||
|
{
|
||||||
|
fallbackCandidates.Add((typeof(GetLibraryItemsOptimizedForStreaming1), new GetLibraryItemsLibraryOptimizedForStreaming(GetLibraryItemsLibraryOptimizedForStreamingType.GetLibraryItemsOptimizedForStreaming1), "GetLibraryItemsOptimizedForStreaming1"));
|
||||||
|
}
|
||||||
|
catch (ResponseBodyDeserializer.DeserializationException)
|
||||||
|
{
|
||||||
|
// try next option
|
||||||
|
}
|
||||||
|
catch (Exception)
|
||||||
|
{
|
||||||
|
throw;
|
||||||
|
}
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
var converted = Convert.ToBoolean(json);
|
||||||
|
return new GetLibraryItemsLibraryOptimizedForStreaming(GetLibraryItemsLibraryOptimizedForStreamingType.Boolean)
|
||||||
|
{
|
||||||
|
Boolean = converted
|
||||||
|
};
|
||||||
|
}
|
||||||
|
catch (System.FormatException)
|
||||||
|
{
|
||||||
|
// try next option
|
||||||
|
}
|
||||||
|
|
||||||
|
if (fallbackCandidates.Count > 0)
|
||||||
|
{
|
||||||
|
fallbackCandidates.Sort((a, b) => ResponseBodyDeserializer.CompareFallbackCandidates(a.Item1, b.Item1, json));
|
||||||
|
foreach(var (deserializationType, returnObject, propertyName) in fallbackCandidates)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
return ResponseBodyDeserializer.DeserializeUndiscriminatedUnionFallback(deserializationType, returnObject, propertyName, json);
|
||||||
|
}
|
||||||
|
catch (ResponseBodyDeserializer.DeserializationException)
|
||||||
|
{
|
||||||
|
// try next fallback option
|
||||||
|
}
|
||||||
|
catch (Exception)
|
||||||
|
{
|
||||||
|
throw;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
throw new InvalidOperationException("Could not deserialize into any supported types.");
|
||||||
|
}
|
||||||
|
|
||||||
|
public override void WriteJson(JsonWriter writer, object? value, JsonSerializer serializer)
|
||||||
|
{
|
||||||
|
if (value == null) {
|
||||||
|
writer.WriteRawValue("null");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
GetLibraryItemsLibraryOptimizedForStreaming res = (GetLibraryItemsLibraryOptimizedForStreaming)value;
|
||||||
|
if (GetLibraryItemsLibraryOptimizedForStreamingType.FromString(res.Type).Equals(GetLibraryItemsLibraryOptimizedForStreamingType.Null))
|
||||||
|
{
|
||||||
|
writer.WriteRawValue("null");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (res.GetLibraryItemsOptimizedForStreaming1 != null)
|
||||||
|
{
|
||||||
|
writer.WriteRawValue(Utilities.SerializeJSON(res.GetLibraryItemsOptimizedForStreaming1));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (res.Boolean != null)
|
||||||
|
{
|
||||||
|
writer.WriteRawValue(Utilities.SerializeJSON(res.Boolean));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,61 +0,0 @@
|
|||||||
//------------------------------------------------------------------------------
|
|
||||||
// <auto-generated>
|
|
||||||
// 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.
|
|
||||||
// </auto-generated>
|
|
||||||
//------------------------------------------------------------------------------
|
|
||||||
#nullable enable
|
|
||||||
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|
||||||
{
|
|
||||||
using LukeHagar.PlexAPI.SDK.Utils;
|
|
||||||
using Newtonsoft.Json;
|
|
||||||
using System;
|
|
||||||
|
|
||||||
public enum GetLibraryItemsLibraryResponse200Type
|
|
||||||
{
|
|
||||||
[JsonProperty("coverPoster")]
|
|
||||||
CoverPoster,
|
|
||||||
[JsonProperty("background")]
|
|
||||||
Background,
|
|
||||||
[JsonProperty("snapshot")]
|
|
||||||
Snapshot,
|
|
||||||
[JsonProperty("clearLogo")]
|
|
||||||
ClearLogo,
|
|
||||||
}
|
|
||||||
|
|
||||||
public static class GetLibraryItemsLibraryResponse200TypeExtension
|
|
||||||
{
|
|
||||||
public static string Value(this GetLibraryItemsLibraryResponse200Type value)
|
|
||||||
{
|
|
||||||
return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString())[0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
|
|
||||||
}
|
|
||||||
|
|
||||||
public static GetLibraryItemsLibraryResponse200Type ToEnum(this string value)
|
|
||||||
{
|
|
||||||
foreach(var field in typeof(GetLibraryItemsLibraryResponse200Type).GetFields())
|
|
||||||
{
|
|
||||||
var attributes = field.GetCustomAttributes(typeof(JsonPropertyAttribute), false);
|
|
||||||
if (attributes.Length == 0)
|
|
||||||
{
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
var attribute = attributes[0] as JsonPropertyAttribute;
|
|
||||||
if (attribute != null && attribute.PropertyName == value)
|
|
||||||
{
|
|
||||||
var enumVal = field.GetValue(null);
|
|
||||||
|
|
||||||
if (enumVal is GetLibraryItemsLibraryResponse200Type)
|
|
||||||
{
|
|
||||||
return (GetLibraryItemsLibraryResponse200Type)enumVal;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
throw new Exception($"Unknown value {value} for enum GetLibraryItemsLibraryResponse200Type");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -9,33 +9,71 @@
|
|||||||
#nullable enable
|
#nullable enable
|
||||||
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
||||||
{
|
{
|
||||||
using LukeHagar.PlexAPI.SDK.Models.Requests;
|
|
||||||
using LukeHagar.PlexAPI.SDK.Utils;
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Concurrent;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
|
||||||
public class GetLibraryItemsLibraryResponseType
|
[JsonConverter(typeof(OpenEnumConverter))]
|
||||||
|
public class GetLibraryItemsLibraryResponseType : IEquatable<GetLibraryItemsLibraryResponseType>
|
||||||
{
|
{
|
||||||
|
public static readonly GetLibraryItemsLibraryResponseType CoverPoster = new GetLibraryItemsLibraryResponseType("coverPoster");
|
||||||
|
public static readonly GetLibraryItemsLibraryResponseType Background = new GetLibraryItemsLibraryResponseType("background");
|
||||||
|
public static readonly GetLibraryItemsLibraryResponseType Snapshot = new GetLibraryItemsLibraryResponseType("snapshot");
|
||||||
|
public static readonly GetLibraryItemsLibraryResponseType ClearLogo = new GetLibraryItemsLibraryResponseType("clearLogo");
|
||||||
|
|
||||||
[JsonProperty("key")]
|
private static readonly Dictionary <string, GetLibraryItemsLibraryResponseType> _knownValues =
|
||||||
public string Key { get; set; } = default!;
|
new Dictionary <string, GetLibraryItemsLibraryResponseType> ()
|
||||||
|
{
|
||||||
|
["coverPoster"] = CoverPoster,
|
||||||
|
["background"] = Background,
|
||||||
|
["snapshot"] = Snapshot,
|
||||||
|
["clearLogo"] = ClearLogo
|
||||||
|
};
|
||||||
|
|
||||||
[JsonProperty("type")]
|
private static readonly ConcurrentDictionary<string, GetLibraryItemsLibraryResponseType> _values =
|
||||||
public string Type { get; set; } = default!;
|
new ConcurrentDictionary<string, GetLibraryItemsLibraryResponseType>(_knownValues);
|
||||||
|
|
||||||
[JsonProperty("title")]
|
private GetLibraryItemsLibraryResponseType(string value)
|
||||||
public string Title { get; set; } = default!;
|
{
|
||||||
|
if (value == null) throw new ArgumentNullException(nameof(value));
|
||||||
[JsonProperty("active")]
|
Value = value;
|
||||||
public bool Active { get; set; } = default!;
|
|
||||||
|
|
||||||
[JsonProperty("Filter")]
|
|
||||||
public List<GetLibraryItemsLibraryFilter>? Filter { get; set; }
|
|
||||||
|
|
||||||
[JsonProperty("Sort")]
|
|
||||||
public List<GetLibraryItemsLibrarySort>? Sort { get; set; }
|
|
||||||
|
|
||||||
[JsonProperty("Field")]
|
|
||||||
public List<GetLibraryItemsLibraryField>? Field { get; set; }
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public string Value { get; }
|
||||||
|
|
||||||
|
public static GetLibraryItemsLibraryResponseType Of(string value)
|
||||||
|
{
|
||||||
|
return _values.GetOrAdd(value, _ => new GetLibraryItemsLibraryResponseType(value));
|
||||||
|
}
|
||||||
|
|
||||||
|
public static implicit operator GetLibraryItemsLibraryResponseType(string value) => Of(value);
|
||||||
|
public static implicit operator string(GetLibraryItemsLibraryResponseType getlibraryitemslibraryresponsetype) => getlibraryitemslibraryresponsetype.Value;
|
||||||
|
|
||||||
|
public static GetLibraryItemsLibraryResponseType[] Values()
|
||||||
|
{
|
||||||
|
return _values.Values.ToArray();
|
||||||
|
}
|
||||||
|
|
||||||
|
public override string ToString() => Value.ToString();
|
||||||
|
|
||||||
|
public bool IsKnown()
|
||||||
|
{
|
||||||
|
return _knownValues.ContainsKey(Value);
|
||||||
|
}
|
||||||
|
|
||||||
|
public override bool Equals(object? obj) => Equals(obj as GetLibraryItemsLibraryResponseType);
|
||||||
|
|
||||||
|
public bool Equals(GetLibraryItemsLibraryResponseType? other)
|
||||||
|
{
|
||||||
|
if (ReferenceEquals(this, other)) return true;
|
||||||
|
if (other is null) return false;
|
||||||
|
return string.Equals(Value, other.Value);
|
||||||
|
}
|
||||||
|
|
||||||
|
public override int GetHashCode() => Value.GetHashCode();
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -1,57 +0,0 @@
|
|||||||
//------------------------------------------------------------------------------
|
|
||||||
// <auto-generated>
|
|
||||||
// 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.
|
|
||||||
// </auto-generated>
|
|
||||||
//------------------------------------------------------------------------------
|
|
||||||
#nullable enable
|
|
||||||
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|
||||||
{
|
|
||||||
using LukeHagar.PlexAPI.SDK.Models.Requests;
|
|
||||||
using LukeHagar.PlexAPI.SDK.Utils;
|
|
||||||
using Newtonsoft.Json;
|
|
||||||
|
|
||||||
public class GetLibraryItemsLibrarySort
|
|
||||||
{
|
|
||||||
|
|
||||||
[JsonProperty("default")]
|
|
||||||
public string? Default { get; set; }
|
|
||||||
|
|
||||||
[JsonProperty("active")]
|
|
||||||
public bool? Active { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// The direction of the sort. Can be either `asc` or `desc`.<br/>
|
|
||||||
///
|
|
||||||
/// <remarks>
|
|
||||||
///
|
|
||||||
/// </remarks>
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("activeDirection")]
|
|
||||||
public GetLibraryItemsLibraryActiveDirection? ActiveDirection { get; set; } = LukeHagar.PlexAPI.SDK.Models.Requests.GetLibraryItemsLibraryActiveDirection.Ascending;
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// The direction of the sort. Can be either `asc` or `desc`.<br/>
|
|
||||||
///
|
|
||||||
/// <remarks>
|
|
||||||
///
|
|
||||||
/// </remarks>
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("defaultDirection")]
|
|
||||||
public GetLibraryItemsLibraryDefaultDirection? DefaultDirection { get; set; } = LukeHagar.PlexAPI.SDK.Models.Requests.GetLibraryItemsLibraryDefaultDirection.Ascending;
|
|
||||||
|
|
||||||
[JsonProperty("descKey")]
|
|
||||||
public string? DescKey { get; set; }
|
|
||||||
|
|
||||||
[JsonProperty("firstCharacterKey")]
|
|
||||||
public string? FirstCharacterKey { get; set; }
|
|
||||||
|
|
||||||
[JsonProperty("key")]
|
|
||||||
public string Key { get; set; } = default!;
|
|
||||||
|
|
||||||
[JsonProperty("title")]
|
|
||||||
public string Title { get; set; } = default!;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -9,72 +9,33 @@
|
|||||||
#nullable enable
|
#nullable enable
|
||||||
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
||||||
{
|
{
|
||||||
|
using LukeHagar.PlexAPI.SDK.Models.Requests;
|
||||||
using LukeHagar.PlexAPI.SDK.Utils;
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
using System;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
/// <summary>
|
public class GetLibraryItemsLibraryType
|
||||||
/// The type of media content in the Plex library. This can represent videos, music, or photos.<br/>
|
|
||||||
///
|
|
||||||
/// <remarks>
|
|
||||||
///
|
|
||||||
/// </remarks>
|
|
||||||
/// </summary>
|
|
||||||
public enum GetLibraryItemsLibraryType
|
|
||||||
{
|
{
|
||||||
[JsonProperty("movie")]
|
|
||||||
Movie,
|
|
||||||
[JsonProperty("show")]
|
|
||||||
TvShow,
|
|
||||||
[JsonProperty("season")]
|
|
||||||
Season,
|
|
||||||
[JsonProperty("episode")]
|
|
||||||
Episode,
|
|
||||||
[JsonProperty("artist")]
|
|
||||||
Artist,
|
|
||||||
[JsonProperty("album")]
|
|
||||||
Album,
|
|
||||||
[JsonProperty("track")]
|
|
||||||
Track,
|
|
||||||
[JsonProperty("photoalbum")]
|
|
||||||
PhotoAlbum,
|
|
||||||
[JsonProperty("photo")]
|
|
||||||
Photo,
|
|
||||||
[JsonProperty("collection")]
|
|
||||||
Collection,
|
|
||||||
}
|
|
||||||
|
|
||||||
public static class GetLibraryItemsLibraryTypeExtension
|
[JsonProperty("key")]
|
||||||
{
|
public string Key { get; set; } = default!;
|
||||||
public static string Value(this GetLibraryItemsLibraryType value)
|
|
||||||
{
|
|
||||||
return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString())[0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
|
|
||||||
}
|
|
||||||
|
|
||||||
public static GetLibraryItemsLibraryType ToEnum(this string value)
|
[JsonProperty("type")]
|
||||||
{
|
public string Type { get; set; } = default!;
|
||||||
foreach(var field in typeof(GetLibraryItemsLibraryType).GetFields())
|
|
||||||
{
|
|
||||||
var attributes = field.GetCustomAttributes(typeof(JsonPropertyAttribute), false);
|
|
||||||
if (attributes.Length == 0)
|
|
||||||
{
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
var attribute = attributes[0] as JsonPropertyAttribute;
|
[JsonProperty("title")]
|
||||||
if (attribute != null && attribute.PropertyName == value)
|
public string Title { get; set; } = default!;
|
||||||
{
|
|
||||||
var enumVal = field.GetValue(null);
|
|
||||||
|
|
||||||
if (enumVal is GetLibraryItemsLibraryType)
|
[JsonProperty("active")]
|
||||||
{
|
public bool Active { get; set; } = default!;
|
||||||
return (GetLibraryItemsLibraryType)enumVal;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
throw new Exception($"Unknown value {value} for enum GetLibraryItemsLibraryType");
|
[JsonProperty("Filter")]
|
||||||
}
|
public List<GetLibraryItemsFilter>? Filter { get; set; }
|
||||||
}
|
|
||||||
|
|
||||||
|
[JsonProperty("Sort")]
|
||||||
|
public List<GetLibraryItemsSort>? Sort { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("Field")]
|
||||||
|
public List<GetLibraryItemsField>? Field { get; set; }
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@@ -12,10 +12,13 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
using LukeHagar.PlexAPI.SDK.Utils;
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The folder path for the media item.
|
||||||
|
/// </summary>
|
||||||
public class GetLibraryItemsLocation
|
public class GetLibraryItemsLocation
|
||||||
{
|
{
|
||||||
|
|
||||||
[JsonProperty("path")]
|
[JsonProperty("path")]
|
||||||
public string? Path { get; set; }
|
public string Path { get; set; } = default!;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -9,6 +9,7 @@
|
|||||||
#nullable enable
|
#nullable enable
|
||||||
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
||||||
{
|
{
|
||||||
|
using LukeHagar.PlexAPI.SDK.Models.Components;
|
||||||
using LukeHagar.PlexAPI.SDK.Models.Requests;
|
using LukeHagar.PlexAPI.SDK.Models.Requests;
|
||||||
using LukeHagar.PlexAPI.SDK.Utils;
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
@@ -17,58 +18,121 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
public class GetLibraryItemsMedia
|
public class GetLibraryItemsMedia
|
||||||
{
|
{
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Unique media identifier.
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("id")]
|
[JsonProperty("id")]
|
||||||
public int Id { get; set; } = default!;
|
public long Id { get; set; } = default!;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Duration of the media in milliseconds.
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("duration")]
|
[JsonProperty("duration")]
|
||||||
public int? Duration { get; set; }
|
public int? Duration { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Bitrate in bits per second.
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("bitrate")]
|
[JsonProperty("bitrate")]
|
||||||
public int? Bitrate { get; set; }
|
public int? Bitrate { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Video width in pixels.
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("width")]
|
[JsonProperty("width")]
|
||||||
public int? Width { get; set; }
|
public int? Width { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Video height in pixels.
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("height")]
|
[JsonProperty("height")]
|
||||||
public int? Height { get; set; }
|
public int? Height { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Aspect ratio of the video.
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("aspectRatio")]
|
[JsonProperty("aspectRatio")]
|
||||||
public double? AspectRatio { get; set; }
|
public float? AspectRatio { get; set; }
|
||||||
|
|
||||||
[JsonProperty("audioProfile")]
|
|
||||||
public string? AudioProfile { get; set; }
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Number of audio channels.
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("audioChannels")]
|
[JsonProperty("audioChannels")]
|
||||||
public int? AudioChannels { get; set; }
|
public int? AudioChannels { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("displayOffset")]
|
||||||
|
public int? DisplayOffset { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Audio codec used.
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("audioCodec")]
|
[JsonProperty("audioCodec")]
|
||||||
public string? AudioCodec { get; set; }
|
public string? AudioCodec { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Video codec used.
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("videoCodec")]
|
[JsonProperty("videoCodec")]
|
||||||
public string? VideoCodec { get; set; }
|
public string? VideoCodec { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Video resolution (e.g., 4k).
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("videoResolution")]
|
[JsonProperty("videoResolution")]
|
||||||
public string? VideoResolution { get; set; }
|
public string? VideoResolution { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Container format of the media.
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("container")]
|
[JsonProperty("container")]
|
||||||
public string Container { get; set; } = default!;
|
public string? Container { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Frame rate of the video. Values found include NTSC, PAL, 24p<br/>
|
||||||
|
///
|
||||||
|
/// <remarks>
|
||||||
|
///
|
||||||
|
/// </remarks>
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("videoFrameRate")]
|
[JsonProperty("videoFrameRate")]
|
||||||
public string? VideoFrameRate { get; set; }
|
public string? VideoFrameRate { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Video profile (e.g., main 10).
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("videoProfile")]
|
[JsonProperty("videoProfile")]
|
||||||
public string? VideoProfile { get; set; }
|
public string? VideoProfile { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Indicates whether voice activity is detected.
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("hasVoiceActivity")]
|
[JsonProperty("hasVoiceActivity")]
|
||||||
public bool? HasVoiceActivity { get; set; }
|
public bool? HasVoiceActivity { get; set; }
|
||||||
|
|
||||||
[JsonProperty("optimizedForStreaming")]
|
/// <summary>
|
||||||
public GetLibraryItemsOptimizedForStreaming? OptimizedForStreaming { get; set; } = LukeHagar.PlexAPI.SDK.Models.Requests.GetLibraryItemsOptimizedForStreaming.Disable;
|
/// The audio profile used for the media (e.g., DTS, Dolby Digital, etc.).
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("audioProfile")]
|
||||||
|
public string? AudioProfile { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Has this media been optimized for streaming. NOTE: This can be 0, 1, false or true
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("optimizedForStreaming")]
|
||||||
|
public GetLibraryItemsOptimizedForStreaming? OptimizedForStreaming { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Indicates whether the media has 64-bit offsets.<br/>
|
||||||
|
///
|
||||||
|
/// <remarks>
|
||||||
|
/// This is relevant for media files that may require larger offsets than what 32-bit integers can provide.<br/>
|
||||||
|
///
|
||||||
|
/// </remarks>
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("has64bitOffsets")]
|
[JsonProperty("has64bitOffsets")]
|
||||||
public bool? Has64bitOffsets { get; set; }
|
public bool? Has64bitOffsets { get; set; }
|
||||||
|
|
||||||
[JsonProperty("Part")]
|
[JsonProperty("Part")]
|
||||||
public List<GetLibraryItemsPart> Part { get; set; } = default!;
|
public List<GetLibraryItemsPart>? Part { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -14,81 +14,128 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// The Meta object is only included in the response if the `includeMeta` parameter is set to `1`.<br/>
|
|
||||||
///
|
|
||||||
/// <remarks>
|
|
||||||
///
|
|
||||||
/// </remarks>
|
|
||||||
/// </summary>
|
|
||||||
public class GetLibraryItemsMediaContainer
|
public class GetLibraryItemsMediaContainer
|
||||||
{
|
{
|
||||||
|
|
||||||
[JsonProperty("Type")]
|
/// <summary>
|
||||||
public List<GetLibraryItemsType>? Type { get; set; }
|
/// Number of media items returned in this response.
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("FieldType")]
|
|
||||||
public List<GetLibraryItemsFieldType>? FieldType { get; set; }
|
|
||||||
|
|
||||||
[JsonProperty("size")]
|
[JsonProperty("size")]
|
||||||
public int Size { get; set; } = default!;
|
public int Size { get; set; } = default!;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Total number of media items in the library.
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("totalSize")]
|
[JsonProperty("totalSize")]
|
||||||
public int TotalSize { get; set; } = default!;
|
public int TotalSize { get; set; } = default!;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Offset value for pagination.
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("offset")]
|
[JsonProperty("offset")]
|
||||||
public int Offset { get; set; } = default!;
|
public long Offset { get; set; } = default!;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The content type or mode.
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("content")]
|
[JsonProperty("content")]
|
||||||
public string Content { get; set; } = default!;
|
public string Content { get; set; } = default!;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Indicates whether syncing is allowed.
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("allowSync")]
|
[JsonProperty("allowSync")]
|
||||||
public bool AllowSync { get; set; } = default!;
|
public bool AllowSync { get; set; } = default!;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Specifies whether caching is disabled.
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("nocache")]
|
[JsonProperty("nocache")]
|
||||||
public bool? Nocache { get; set; }
|
public bool Nocache { get; set; } = default!;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// URL for the background artwork of the media container.
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("art")]
|
[JsonProperty("art")]
|
||||||
public string Art { get; set; } = default!;
|
public string Art { get; set; } = default!;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// An plugin identifier for the media container.
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("identifier")]
|
[JsonProperty("identifier")]
|
||||||
public string Identifier { get; set; } = default!;
|
public string Identifier { get; set; } = default!;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The unique identifier for the library section.
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("librarySectionID")]
|
[JsonProperty("librarySectionID")]
|
||||||
public long LibrarySectionID { get; set; } = default!;
|
public long? LibrarySectionID { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The title of the library section.
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("librarySectionTitle")]
|
[JsonProperty("librarySectionTitle")]
|
||||||
public string LibrarySectionTitle { get; set; } = default!;
|
public string? LibrarySectionTitle { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The universally unique identifier for the library section.
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("librarySectionUUID")]
|
[JsonProperty("librarySectionUUID")]
|
||||||
public string LibrarySectionUUID { get; set; } = default!;
|
public string? LibrarySectionUUID { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The prefix used for media tag resource paths.
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("mediaTagPrefix")]
|
[JsonProperty("mediaTagPrefix")]
|
||||||
public string MediaTagPrefix { get; set; } = default!;
|
public string MediaTagPrefix { get; set; } = default!;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The version number for media tags.
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("mediaTagVersion")]
|
[JsonProperty("mediaTagVersion")]
|
||||||
public int MediaTagVersion { get; set; } = default!;
|
public long MediaTagVersion { get; set; } = default!;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// URL for the thumbnail image of the media container.
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("thumb")]
|
[JsonProperty("thumb")]
|
||||||
public string Thumb { get; set; } = default!;
|
public string Thumb { get; set; } = default!;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The primary title of the media container.
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("title1")]
|
[JsonProperty("title1")]
|
||||||
public string Title1 { get; set; } = default!;
|
public string Title1 { get; set; } = default!;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The secondary title of the media container.
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("title2")]
|
[JsonProperty("title2")]
|
||||||
public string Title2 { get; set; } = default!;
|
public string Title2 { get; set; } = default!;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Identifier for the view group layout.
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("viewGroup")]
|
[JsonProperty("viewGroup")]
|
||||||
public string ViewGroup { get; set; } = default!;
|
public string ViewGroup { get; set; } = default!;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Identifier for the view mode.
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("viewMode")]
|
[JsonProperty("viewMode")]
|
||||||
public int? ViewMode { get; set; }
|
public string? ViewMode { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Indicates if the media container has mixed parents.
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("mixedParents")]
|
[JsonProperty("mixedParents")]
|
||||||
public bool? MixedParents { get; set; }
|
public bool? MixedParents { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// An array of metadata items.
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("Metadata")]
|
[JsonProperty("Metadata")]
|
||||||
public List<GetLibraryItemsMetadata>? Metadata { get; set; }
|
public List<GetLibraryItemsMetadata> Metadata { get; set; } = default!;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The Meta object is only included in the response if the `includeMeta` parameter is set to `1`.<br/>
|
/// The Meta object is only included in the response if the `includeMeta` parameter is set to `1`.<br/>
|
||||||
|
|||||||
@@ -25,9 +25,9 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
{
|
{
|
||||||
|
|
||||||
[JsonProperty("Type")]
|
[JsonProperty("Type")]
|
||||||
public List<GetLibraryItemsLibraryResponseType>? Type { get; set; }
|
public List<GetLibraryItemsLibraryType>? Type { get; set; }
|
||||||
|
|
||||||
[JsonProperty("FieldType")]
|
[JsonProperty("FieldType")]
|
||||||
public List<GetLibraryItemsLibraryFieldType>? FieldType { get; set; }
|
public List<GetLibraryItemsFieldType>? FieldType { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -13,131 +13,168 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
using LukeHagar.PlexAPI.SDK.Utils;
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
using NodaTime;
|
using NodaTime;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Concurrent;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Unknown<br/>
|
||||||
|
///
|
||||||
|
/// <remarks>
|
||||||
|
///
|
||||||
|
/// </remarks>
|
||||||
|
/// </summary>
|
||||||
public class GetLibraryItemsMetadata
|
public class GetLibraryItemsMetadata
|
||||||
{
|
{
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The rating key (Media ID) of this media item.<br/>
|
/// The rating key (Media ID) of this media item. Note: Although this is always an integer, it is represented as a string in the API.
|
||||||
///
|
|
||||||
/// <remarks>
|
|
||||||
/// Note: This is always an integer, but is represented as a string in the API.<br/>
|
|
||||||
///
|
|
||||||
/// </remarks>
|
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonProperty("ratingKey")]
|
[JsonProperty("ratingKey")]
|
||||||
public string RatingKey { get; set; } = default!;
|
public string RatingKey { get; set; } = default!;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The unique key for the media item.
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("key")]
|
[JsonProperty("key")]
|
||||||
public string Key { get; set; } = default!;
|
public string Key { get; set; } = default!;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The globally unique identifier for the media item.
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("guid")]
|
[JsonProperty("guid")]
|
||||||
public string Guid { get; set; } = default!;
|
public string Guid { get; set; } = default!;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A URL‐friendly version of the media title.
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("slug")]
|
||||||
|
public string Slug { get; set; } = default!;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The studio that produced the media item.
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("studio")]
|
[JsonProperty("studio")]
|
||||||
public string? Studio { get; set; }
|
public string? Studio { get; set; }
|
||||||
|
|
||||||
[JsonProperty("skipChildren")]
|
[JsonProperty("type")]
|
||||||
public bool? SkipChildren { get; set; }
|
public GetLibraryItemsType Type { get; set; } = default!;
|
||||||
|
|
||||||
[JsonProperty("librarySectionID")]
|
|
||||||
public long? LibrarySectionID { get; set; }
|
|
||||||
|
|
||||||
[JsonProperty("librarySectionTitle")]
|
|
||||||
public string? LibrarySectionTitle { get; set; }
|
|
||||||
|
|
||||||
[JsonProperty("librarySectionKey")]
|
|
||||||
public string? LibrarySectionKey { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The type of media content in the Plex library. This can represent videos, music, or photos.<br/>
|
/// The title of the media item.
|
||||||
///
|
|
||||||
/// <remarks>
|
|
||||||
///
|
|
||||||
/// </remarks>
|
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonProperty("type")]
|
|
||||||
public GetLibraryItemsLibraryType Type { get; set; } = default!;
|
|
||||||
|
|
||||||
[JsonProperty("title")]
|
[JsonProperty("title")]
|
||||||
public string Title { get; set; } = default!;
|
public string Title { get; set; } = default!;
|
||||||
|
|
||||||
[JsonProperty("slug")]
|
/// <summary>
|
||||||
public string? Slug { get; set; }
|
/// The banner image URL for the media item.
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("banner")]
|
||||||
|
public string Banner { get; set; } = default!;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The sort title used for ordering media items.
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("titleSort")]
|
||||||
|
public string TitleSort { get; set; } = default!;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The content rating for the media item.
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("contentRating")]
|
[JsonProperty("contentRating")]
|
||||||
public string? ContentRating { get; set; }
|
public string? ContentRating { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A synopsis of the media item.
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("summary")]
|
[JsonProperty("summary")]
|
||||||
public string Summary { get; set; } = default!;
|
public string Summary { get; set; } = default!;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The critic rating for the media item.
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("rating")]
|
[JsonProperty("rating")]
|
||||||
public double? Rating { get; set; }
|
public float Rating { get; set; } = default!;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The audience rating for the media item.
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("audienceRating")]
|
[JsonProperty("audienceRating")]
|
||||||
public double? AudienceRating { get; set; }
|
public double AudienceRating { get; set; } = default!;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The release year of the media item.
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("year")]
|
[JsonProperty("year")]
|
||||||
public int? Year { get; set; }
|
public int? Year { get; set; }
|
||||||
|
|
||||||
[JsonProperty("seasonCount")]
|
/// <summary>
|
||||||
public int? SeasonCount { get; set; }
|
/// A brief tagline for the media item.
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("tagline")]
|
[JsonProperty("tagline")]
|
||||||
public string? Tagline { get; set; }
|
public string Tagline { get; set; } = default!;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Setting that indicates if seasons are set to hidden for the show. (-1 = Library default, 0 = Hide, 1 = Show).
|
/// The thumbnail image URL for the media item.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonProperty("flattenSeasons")]
|
|
||||||
public FlattenSeasons? FlattenSeasons { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Setting that indicates how episodes are sorted for the show. (-1 = Library default, 0 = Oldest first, 1 = Newest first).
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("episodeSort")]
|
|
||||||
public EpisodeSort? EpisodeSort { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Setting that indicates if credits markers detection is enabled. (-1 = Library default, 0 = Disabled).
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("enableCreditsMarkerGeneration")]
|
|
||||||
public EnableCreditsMarkerGeneration? EnableCreditsMarkerGeneration { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Setting that indicates the episode ordering for the show.<br/>
|
|
||||||
///
|
|
||||||
/// <remarks>
|
|
||||||
/// None = Library default,<br/>
|
|
||||||
/// tmdbAiring = The Movie Database (Aired),<br/>
|
|
||||||
/// aired = TheTVDB (Aired),<br/>
|
|
||||||
/// dvd = TheTVDB (DVD),<br/>
|
|
||||||
/// absolute = TheTVDB (Absolute)).<br/>
|
|
||||||
///
|
|
||||||
/// </remarks>
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("showOrdering")]
|
|
||||||
public ShowOrdering? ShowOrdering { get; set; }
|
|
||||||
|
|
||||||
[JsonProperty("thumb")]
|
[JsonProperty("thumb")]
|
||||||
public string? Thumb { get; set; }
|
public string Thumb { get; set; } = default!;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The art image URL for the media item.
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("art")]
|
[JsonProperty("art")]
|
||||||
public string? Art { get; set; }
|
public string Art { get; set; } = default!;
|
||||||
|
|
||||||
[JsonProperty("banner")]
|
/// <summary>
|
||||||
public string? Banner { get; set; }
|
/// The theme URL for the media item.
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("theme")]
|
||||||
|
public string Theme { get; set; } = default!;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The index position of the media item.
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("index")]
|
||||||
|
public int Index { get; set; } = default!;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The number of leaf items (end nodes) under this media item.
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("leafCount")]
|
||||||
|
public int? LeafCount { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The number of leaf items that have been viewed.
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("viewedLeafCount")]
|
||||||
|
public int? ViewedLeafCount { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The number of child items associated with this media item.
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("childCount")]
|
||||||
|
public int ChildCount { get; set; } = default!;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The total number of seasons (for TV shows).
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("seasonCount")]
|
||||||
|
public int SeasonCount { get; set; } = default!;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The duration of the media item in milliseconds.
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("duration")]
|
[JsonProperty("duration")]
|
||||||
public int? Duration { get; set; }
|
public int Duration { get; set; } = default!;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The original release date of the media item.
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("originallyAvailableAt")]
|
[JsonProperty("originallyAvailableAt")]
|
||||||
public LocalDate? OriginallyAvailableAt { get; set; }
|
public LocalDate? OriginallyAvailableAt { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Unix epoch datetime in seconds
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("addedAt")]
|
[JsonProperty("addedAt")]
|
||||||
public long AddedAt { get; set; } = default!;
|
public long AddedAt { get; set; } = default!;
|
||||||
|
|
||||||
@@ -147,52 +184,233 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
[JsonProperty("updatedAt")]
|
[JsonProperty("updatedAt")]
|
||||||
public long? UpdatedAt { get; set; }
|
public long? UpdatedAt { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The URL for the audience rating image.
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("audienceRatingImage")]
|
[JsonProperty("audienceRatingImage")]
|
||||||
public string? AudienceRatingImage { get; set; }
|
public string? AudienceRatingImage { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The source from which chapter data is derived.
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("chapterSource")]
|
[JsonProperty("chapterSource")]
|
||||||
public string? ChapterSource { get; set; }
|
public string? ChapterSource { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The primary extra key associated with this media item.
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("primaryExtraKey")]
|
[JsonProperty("primaryExtraKey")]
|
||||||
public string? PrimaryExtraKey { get; set; }
|
public string? PrimaryExtraKey { get; set; }
|
||||||
|
|
||||||
[JsonProperty("ratingImage")]
|
/// <summary>
|
||||||
public string? RatingImage { get; set; }
|
/// The original title of the media item (if different).
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("originalTitle")]
|
||||||
|
public string? OriginalTitle { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The rating key of the parent media item.
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("parentRatingKey")]
|
||||||
|
public string? ParentRatingKey { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The rating key of the grandparent media item.
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("grandparentRatingKey")]
|
[JsonProperty("grandparentRatingKey")]
|
||||||
public string? GrandparentRatingKey { get; set; }
|
public string? GrandparentRatingKey { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The GUID of the parent media item.
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("parentGuid")]
|
||||||
|
public string? ParentGuid { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The GUID of the grandparent media item.
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("grandparentGuid")]
|
[JsonProperty("grandparentGuid")]
|
||||||
public string? GrandparentGuid { get; set; }
|
public string? GrandparentGuid { get; set; }
|
||||||
|
|
||||||
[JsonProperty("grandparentKey")]
|
/// <summary>
|
||||||
public string? GrandparentKey { get; set; }
|
/// The slug for the grandparent media item.
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("grandparentTitle")]
|
|
||||||
public string? GrandparentTitle { get; set; }
|
|
||||||
|
|
||||||
[JsonProperty("grandparentThumb")]
|
|
||||||
public string? GrandparentThumb { get; set; }
|
|
||||||
|
|
||||||
[JsonProperty("parentSlug")]
|
|
||||||
public string? ParentSlug { get; set; }
|
|
||||||
|
|
||||||
[JsonProperty("grandparentSlug")]
|
[JsonProperty("grandparentSlug")]
|
||||||
public string? GrandparentSlug { get; set; }
|
public string? GrandparentSlug { get; set; }
|
||||||
|
|
||||||
[JsonProperty("grandparentArt")]
|
/// <summary>
|
||||||
public string? GrandparentArt { get; set; }
|
/// The key of the grandparent media item.
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("grandparentKey")]
|
||||||
|
public string? GrandparentKey { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The key of the parent media item.
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("parentKey")]
|
||||||
|
public string? ParentKey { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The title of the grandparent media item.
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("grandparentTitle")]
|
||||||
|
public string? GrandparentTitle { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The thumbnail URL for the grandparent media item.
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("grandparentThumb")]
|
||||||
|
public string? GrandparentThumb { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The theme URL for the grandparent media item.
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("grandparentTheme")]
|
[JsonProperty("grandparentTheme")]
|
||||||
public string? GrandparentTheme { get; set; }
|
public string? GrandparentTheme { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The Media object is only included when type query is `4` or higher.<br/>
|
/// The art URL for the grandparent media item.
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("grandparentArt")]
|
||||||
|
public string? GrandparentArt { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The title of the parent media item.
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("parentTitle")]
|
||||||
|
public string? ParentTitle { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The index position of the parent media item.
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("parentIndex")]
|
||||||
|
public int? ParentIndex { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The thumbnail URL for the parent media item.
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("parentThumb")]
|
||||||
|
public string? ParentThumb { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The URL for the rating image.
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("ratingImage")]
|
||||||
|
public string? RatingImage { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The number of times this media item has been viewed.
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("viewCount")]
|
||||||
|
public int? ViewCount { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The current playback offset (in milliseconds).
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("viewOffset")]
|
||||||
|
public int? ViewOffset { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The number of times this media item has been skipped.
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("skipCount")]
|
||||||
|
public int? SkipCount { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A classification that further describes the type of media item. For example, 'clip' indicates that the item is a short video clip.
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("subtype")]
|
||||||
|
public string? Subtype { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The Unix timestamp representing the last time the item was rated.
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("lastRatedAt")]
|
||||||
|
public long? LastRatedAt { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The accuracy of the creation timestamp. This value indicates the format(s) provided (for example, 'epoch,local' means both epoch and local time formats are available).
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("createdAtAccuracy")]
|
||||||
|
public string? CreatedAtAccuracy { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The time zone offset for the creation timestamp, represented as a string. This offset indicates the difference from UTC.
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("createdAtTZOffset")]
|
||||||
|
public string? CreatedAtTZOffset { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Unix timestamp for when the media item was last viewed.
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("lastViewedAt")]
|
||||||
|
public int? LastViewedAt { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The rating provided by a user for the item. This value is expressed as a decimal number.
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("userRating")]
|
||||||
|
public float? UserRating { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("Image")]
|
||||||
|
public List<GetLibraryItemsImage>? Image { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("UltraBlurColors")]
|
||||||
|
public GetLibraryItemsUltraBlurColors? UltraBlurColors { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("Guid")]
|
||||||
|
public List<GetLibraryItemsGuids>? Guids { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The identifier for the library section.
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("librarySectionID")]
|
||||||
|
public long? LibrarySectionID { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The title of the library section.
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("librarySectionTitle")]
|
||||||
|
public string? LibrarySectionTitle { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The key corresponding to the library section.
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("librarySectionKey")]
|
||||||
|
public string? LibrarySectionKey { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Setting that indicates the episode ordering for the show.<br/>
|
||||||
|
///
|
||||||
|
/// <remarks>
|
||||||
|
/// Options:<br/>
|
||||||
|
/// - None = Library default<br/>
|
||||||
|
/// - tmdbAiring = The Movie Database (Aired)<br/>
|
||||||
|
/// - aired = TheTVDB (Aired)<br/>
|
||||||
|
/// - dvd = TheTVDB (DVD)<br/>
|
||||||
|
/// - absolute = TheTVDB (Absolute)<br/>
|
||||||
|
///
|
||||||
|
/// </remarks>
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("showOrdering")]
|
||||||
|
public ShowOrdering? ShowOrdering { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Setting that indicates if seasons are set to hidden for the show. (-1 = Library default, 0 = Hide, 1 = Show).<br/>
|
||||||
///
|
///
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
///
|
///
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
[JsonProperty("flattenSeasons")]
|
||||||
|
public FlattenSeasons? FlattenSeasons { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Indicates whether child items should be skipped.
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("skipChildren")]
|
||||||
|
public bool? SkipChildren { get; set; }
|
||||||
|
|
||||||
[JsonProperty("Media")]
|
[JsonProperty("Media")]
|
||||||
public List<GetLibraryItemsMedia>? Media { get; set; }
|
public List<GetLibraryItemsMedia>? Media { get; set; }
|
||||||
|
|
||||||
@@ -208,105 +426,31 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
[JsonProperty("Writer")]
|
[JsonProperty("Writer")]
|
||||||
public List<GetLibraryItemsWriter>? Writer { get; set; }
|
public List<GetLibraryItemsWriter>? Writer { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("Producer")]
|
||||||
|
public List<GetLibraryItemsProducer>? Producer { get; set; }
|
||||||
|
|
||||||
[JsonProperty("Collection")]
|
[JsonProperty("Collection")]
|
||||||
public List<GetLibraryItemsCollection>? Collection { get; set; }
|
public List<GetLibraryItemsCollection>? Collection { get; set; }
|
||||||
|
|
||||||
[JsonProperty("Role")]
|
[JsonProperty("Role")]
|
||||||
public List<GetLibraryItemsRole>? Role { get; set; }
|
public List<GetLibraryItemsRole>? Role { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("Rating")]
|
||||||
|
public List<Ratings>? Ratings { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("Similar")]
|
||||||
|
public List<GetLibraryItemsSimilar>? Similar { get; set; }
|
||||||
|
|
||||||
[JsonProperty("Location")]
|
[JsonProperty("Location")]
|
||||||
public List<GetLibraryItemsLocation>? Location { get; set; }
|
public List<GetLibraryItemsLocation>? Location { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
[JsonProperty("Chapter")]
|
||||||
/// The Guid object is only included in the response if the `includeGuids` parameter is set to `1`.<br/>
|
public List<Chapter>? Chapter { get; set; }
|
||||||
///
|
|
||||||
/// <remarks>
|
|
||||||
///
|
|
||||||
/// </remarks>
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("Guid")]
|
|
||||||
public List<MediaGuid>? MediaGuid { get; set; }
|
|
||||||
|
|
||||||
[JsonProperty("UltraBlurColors")]
|
[JsonProperty("Marker")]
|
||||||
public GetLibraryItemsUltraBlurColors? UltraBlurColors { get; set; }
|
public List<Marker>? Marker { get; set; }
|
||||||
|
|
||||||
[JsonProperty("Rating")]
|
[JsonProperty("Extras")]
|
||||||
public List<MetaDataRating>? MetaDataRating { get; set; }
|
public Extras? Extras { get; set; }
|
||||||
|
|
||||||
[JsonProperty("Image")]
|
|
||||||
public List<GetLibraryItemsImage>? Image { get; set; }
|
|
||||||
|
|
||||||
[JsonProperty("titleSort")]
|
|
||||||
public string? TitleSort { get; set; }
|
|
||||||
|
|
||||||
[JsonProperty("viewCount")]
|
|
||||||
public int? ViewCount { get; set; }
|
|
||||||
|
|
||||||
[JsonProperty("lastViewedAt")]
|
|
||||||
public int? LastViewedAt { get; set; }
|
|
||||||
|
|
||||||
[JsonProperty("originalTitle")]
|
|
||||||
public string? OriginalTitle { get; set; }
|
|
||||||
|
|
||||||
[JsonProperty("viewOffset")]
|
|
||||||
public int? ViewOffset { get; set; }
|
|
||||||
|
|
||||||
[JsonProperty("skipCount")]
|
|
||||||
public int? SkipCount { get; set; }
|
|
||||||
|
|
||||||
[JsonProperty("index")]
|
|
||||||
public int? Index { get; set; }
|
|
||||||
|
|
||||||
[JsonProperty("theme")]
|
|
||||||
public string? Theme { get; set; }
|
|
||||||
|
|
||||||
[JsonProperty("leafCount")]
|
|
||||||
public int? LeafCount { get; set; }
|
|
||||||
|
|
||||||
[JsonProperty("viewedLeafCount")]
|
|
||||||
public int? ViewedLeafCount { get; set; }
|
|
||||||
|
|
||||||
[JsonProperty("childCount")]
|
|
||||||
public int? ChildCount { get; set; }
|
|
||||||
|
|
||||||
[JsonProperty("hasPremiumExtras")]
|
|
||||||
public string? HasPremiumExtras { get; set; }
|
|
||||||
|
|
||||||
[JsonProperty("hasPremiumPrimaryExtra")]
|
|
||||||
public string? HasPremiumPrimaryExtra { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// The rating key of the parent item.<br/>
|
|
||||||
///
|
|
||||||
/// <remarks>
|
|
||||||
///
|
|
||||||
/// </remarks>
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("parentRatingKey")]
|
|
||||||
public string? ParentRatingKey { get; set; }
|
|
||||||
|
|
||||||
[JsonProperty("parentGuid")]
|
|
||||||
public string? ParentGuid { get; set; }
|
|
||||||
|
|
||||||
[JsonProperty("parentStudio")]
|
|
||||||
public string? ParentStudio { get; set; }
|
|
||||||
|
|
||||||
[JsonProperty("parentKey")]
|
|
||||||
public string? ParentKey { get; set; }
|
|
||||||
|
|
||||||
[JsonProperty("parentTitle")]
|
|
||||||
public string? ParentTitle { get; set; }
|
|
||||||
|
|
||||||
[JsonProperty("parentIndex")]
|
|
||||||
public int? ParentIndex { get; set; }
|
|
||||||
|
|
||||||
[JsonProperty("parentYear")]
|
|
||||||
public int? ParentYear { get; set; }
|
|
||||||
|
|
||||||
[JsonProperty("parentThumb")]
|
|
||||||
public string? ParentThumb { get; set; }
|
|
||||||
|
|
||||||
[JsonProperty("parentTheme")]
|
|
||||||
public string? ParentTheme { get; set; }
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -9,12 +9,191 @@
|
|||||||
#nullable enable
|
#nullable enable
|
||||||
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
||||||
{
|
{
|
||||||
|
using LukeHagar.PlexAPI.SDK.Models.Requests;
|
||||||
using LukeHagar.PlexAPI.SDK.Utils;
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
using Newtonsoft.Json.Linq;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Numerics;
|
||||||
|
using System.Reflection;
|
||||||
|
|
||||||
public enum GetLibraryItemsOptimizedForStreaming
|
|
||||||
|
public class GetLibraryItemsOptimizedForStreamingType
|
||||||
{
|
{
|
||||||
Disable = 0,
|
private GetLibraryItemsOptimizedForStreamingType(string value) { Value = value; }
|
||||||
Enable = 1,
|
|
||||||
|
public string Value { get; private set; }
|
||||||
|
public static GetLibraryItemsOptimizedForStreamingType OptimizedForStreaming1 { get { return new GetLibraryItemsOptimizedForStreamingType("optimizedForStreaming_1"); } }
|
||||||
|
|
||||||
|
public static GetLibraryItemsOptimizedForStreamingType Boolean { get { return new GetLibraryItemsOptimizedForStreamingType("boolean"); } }
|
||||||
|
|
||||||
|
public static GetLibraryItemsOptimizedForStreamingType Null { get { return new GetLibraryItemsOptimizedForStreamingType("null"); } }
|
||||||
|
|
||||||
|
public override string ToString() { return Value; }
|
||||||
|
public static implicit operator String(GetLibraryItemsOptimizedForStreamingType v) { return v.Value; }
|
||||||
|
public static GetLibraryItemsOptimizedForStreamingType FromString(string v) {
|
||||||
|
switch(v) {
|
||||||
|
case "optimizedForStreaming_1": return OptimizedForStreaming1;
|
||||||
|
case "boolean": return Boolean;
|
||||||
|
case "null": return Null;
|
||||||
|
default: throw new ArgumentException("Invalid value for GetLibraryItemsOptimizedForStreamingType");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
public override bool Equals(object? obj)
|
||||||
|
{
|
||||||
|
if (obj == null || GetType() != obj.GetType())
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return Value.Equals(((GetLibraryItemsOptimizedForStreamingType)obj).Value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public override int GetHashCode()
|
||||||
|
{
|
||||||
|
return Value.GetHashCode();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Has this media been optimized for streaming. NOTE: This can be 0, 1, false or true
|
||||||
|
/// </summary>
|
||||||
|
[JsonConverter(typeof(GetLibraryItemsOptimizedForStreaming.GetLibraryItemsOptimizedForStreamingConverter))]
|
||||||
|
public class GetLibraryItemsOptimizedForStreaming {
|
||||||
|
public GetLibraryItemsOptimizedForStreaming(GetLibraryItemsOptimizedForStreamingType type) {
|
||||||
|
Type = type;
|
||||||
|
}
|
||||||
|
|
||||||
|
[SpeakeasyMetadata("form:explode=true")]
|
||||||
|
public OptimizedForStreaming1? OptimizedForStreaming1 { get; set; }
|
||||||
|
|
||||||
|
[SpeakeasyMetadata("form:explode=true")]
|
||||||
|
public bool? Boolean { get; set; }
|
||||||
|
|
||||||
|
public GetLibraryItemsOptimizedForStreamingType Type { get; set; }
|
||||||
|
|
||||||
|
|
||||||
|
public static GetLibraryItemsOptimizedForStreaming CreateOptimizedForStreaming1(OptimizedForStreaming1 optimizedForStreaming1) {
|
||||||
|
GetLibraryItemsOptimizedForStreamingType typ = GetLibraryItemsOptimizedForStreamingType.OptimizedForStreaming1;
|
||||||
|
|
||||||
|
GetLibraryItemsOptimizedForStreaming res = new GetLibraryItemsOptimizedForStreaming(typ);
|
||||||
|
res.OptimizedForStreaming1 = optimizedForStreaming1;
|
||||||
|
return res;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static GetLibraryItemsOptimizedForStreaming CreateBoolean(bool boolean) {
|
||||||
|
GetLibraryItemsOptimizedForStreamingType typ = GetLibraryItemsOptimizedForStreamingType.Boolean;
|
||||||
|
|
||||||
|
GetLibraryItemsOptimizedForStreaming res = new GetLibraryItemsOptimizedForStreaming(typ);
|
||||||
|
res.Boolean = boolean;
|
||||||
|
return res;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static GetLibraryItemsOptimizedForStreaming CreateNull() {
|
||||||
|
GetLibraryItemsOptimizedForStreamingType typ = GetLibraryItemsOptimizedForStreamingType.Null;
|
||||||
|
return new GetLibraryItemsOptimizedForStreaming(typ);
|
||||||
|
}
|
||||||
|
|
||||||
|
public class GetLibraryItemsOptimizedForStreamingConverter : JsonConverter
|
||||||
|
{
|
||||||
|
|
||||||
|
public override bool CanConvert(System.Type objectType) => objectType == typeof(GetLibraryItemsOptimizedForStreaming);
|
||||||
|
|
||||||
|
public override bool CanRead => true;
|
||||||
|
|
||||||
|
public override object? ReadJson(JsonReader reader, System.Type objectType, object? existingValue, JsonSerializer serializer)
|
||||||
|
{
|
||||||
|
var json = JRaw.Create(reader).ToString();
|
||||||
|
if (json == "null")
|
||||||
|
{
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
var fallbackCandidates = new List<(System.Type, object, string)>();
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
return new GetLibraryItemsOptimizedForStreaming(GetLibraryItemsOptimizedForStreamingType.OptimizedForStreaming1)
|
||||||
|
{
|
||||||
|
OptimizedForStreaming1 = ResponseBodyDeserializer.DeserializeUndiscriminatedUnionMember<OptimizedForStreaming1>(json)
|
||||||
|
};
|
||||||
|
}
|
||||||
|
catch (ResponseBodyDeserializer.MissingMemberException)
|
||||||
|
{
|
||||||
|
fallbackCandidates.Add((typeof(OptimizedForStreaming1), new GetLibraryItemsOptimizedForStreaming(GetLibraryItemsOptimizedForStreamingType.OptimizedForStreaming1), "OptimizedForStreaming1"));
|
||||||
|
}
|
||||||
|
catch (ResponseBodyDeserializer.DeserializationException)
|
||||||
|
{
|
||||||
|
// try next option
|
||||||
|
}
|
||||||
|
catch (Exception)
|
||||||
|
{
|
||||||
|
throw;
|
||||||
|
}
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
var converted = Convert.ToBoolean(json);
|
||||||
|
return new GetLibraryItemsOptimizedForStreaming(GetLibraryItemsOptimizedForStreamingType.Boolean)
|
||||||
|
{
|
||||||
|
Boolean = converted
|
||||||
|
};
|
||||||
|
}
|
||||||
|
catch (System.FormatException)
|
||||||
|
{
|
||||||
|
// try next option
|
||||||
|
}
|
||||||
|
|
||||||
|
if (fallbackCandidates.Count > 0)
|
||||||
|
{
|
||||||
|
fallbackCandidates.Sort((a, b) => ResponseBodyDeserializer.CompareFallbackCandidates(a.Item1, b.Item1, json));
|
||||||
|
foreach(var (deserializationType, returnObject, propertyName) in fallbackCandidates)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
return ResponseBodyDeserializer.DeserializeUndiscriminatedUnionFallback(deserializationType, returnObject, propertyName, json);
|
||||||
|
}
|
||||||
|
catch (ResponseBodyDeserializer.DeserializationException)
|
||||||
|
{
|
||||||
|
// try next fallback option
|
||||||
|
}
|
||||||
|
catch (Exception)
|
||||||
|
{
|
||||||
|
throw;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
throw new InvalidOperationException("Could not deserialize into any supported types.");
|
||||||
|
}
|
||||||
|
|
||||||
|
public override void WriteJson(JsonWriter writer, object? value, JsonSerializer serializer)
|
||||||
|
{
|
||||||
|
if (value == null) {
|
||||||
|
writer.WriteRawValue("null");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
GetLibraryItemsOptimizedForStreaming res = (GetLibraryItemsOptimizedForStreaming)value;
|
||||||
|
if (GetLibraryItemsOptimizedForStreamingType.FromString(res.Type).Equals(GetLibraryItemsOptimizedForStreamingType.Null))
|
||||||
|
{
|
||||||
|
writer.WriteRawValue("null");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (res.OptimizedForStreaming1 != null)
|
||||||
|
{
|
||||||
|
writer.WriteRawValue(Utilities.SerializeJSON(res.OptimizedForStreaming1));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (res.Boolean != null)
|
||||||
|
{
|
||||||
|
writer.WriteRawValue(Utilities.SerializeJSON(res.Boolean));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@@ -10,12 +10,11 @@
|
|||||||
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
||||||
{
|
{
|
||||||
using LukeHagar.PlexAPI.SDK.Utils;
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
using Newtonsoft.Json;
|
|
||||||
|
|
||||||
public class GetSearchAllLibrariesCollection
|
public enum GetLibraryItemsOptimizedForStreaming1
|
||||||
{
|
{
|
||||||
|
Zero = 0,
|
||||||
[JsonProperty("tag")]
|
One = 1,
|
||||||
public string? Tag { get; set; }
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -9,58 +9,94 @@
|
|||||||
#nullable enable
|
#nullable enable
|
||||||
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
||||||
{
|
{
|
||||||
|
using LukeHagar.PlexAPI.SDK.Models.Components;
|
||||||
using LukeHagar.PlexAPI.SDK.Models.Requests;
|
using LukeHagar.PlexAPI.SDK.Models.Requests;
|
||||||
using LukeHagar.PlexAPI.SDK.Utils;
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
using System.Collections.Generic;
|
|
||||||
|
|
||||||
public class GetLibraryItemsPart
|
public class GetLibraryItemsPart
|
||||||
{
|
{
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Indicates if the part is accessible.
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("accessible")]
|
||||||
|
public bool? Accessible { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Indicates if the part exists.
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("exists")]
|
||||||
|
public bool? Exists { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Unique part identifier.
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("id")]
|
[JsonProperty("id")]
|
||||||
public int Id { get; set; } = default!;
|
public long Id { get; set; } = default!;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Key to access this part.
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("key")]
|
[JsonProperty("key")]
|
||||||
public string Key { get; set; } = default!;
|
public string? Key { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("indexes")]
|
||||||
|
public string? Indexes { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Duration of the part in milliseconds.
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("duration")]
|
[JsonProperty("duration")]
|
||||||
public int? Duration { get; set; }
|
public int? Duration { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// File path for the part.
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("file")]
|
[JsonProperty("file")]
|
||||||
public string File { get; set; } = default!;
|
public string? File { get; set; }
|
||||||
|
|
||||||
[JsonProperty("size")]
|
|
||||||
public long Size { get; set; } = default!;
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The container format of the media file.<br/>
|
/// File size in bytes.
|
||||||
///
|
/// </summary>
|
||||||
/// <remarks>
|
[JsonProperty("size")]
|
||||||
///
|
public long? Size { get; set; }
|
||||||
/// </remarks>
|
|
||||||
|
[JsonProperty("packetLength")]
|
||||||
|
public int? PacketLength { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Container format of the part.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonProperty("container")]
|
[JsonProperty("container")]
|
||||||
public string Container { get; set; } = default!;
|
public string? Container { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Video profile for the part.
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("videoProfile")]
|
||||||
|
public string? VideoProfile { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The audio profile used for the media (e.g., DTS, Dolby Digital, etc.).
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("audioProfile")]
|
[JsonProperty("audioProfile")]
|
||||||
public string? AudioProfile { get; set; }
|
public string? AudioProfile { get; set; }
|
||||||
|
|
||||||
[JsonProperty("has64bitOffsets")]
|
[JsonProperty("has64bitOffsets")]
|
||||||
public bool? Has64bitOffsets { get; set; }
|
public bool? Has64bitOffsets { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Has this media been optimized for streaming. NOTE: This can be 0, 1, false or true<br/>
|
||||||
|
///
|
||||||
|
/// <remarks>
|
||||||
|
///
|
||||||
|
/// </remarks>
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("optimizedForStreaming")]
|
[JsonProperty("optimizedForStreaming")]
|
||||||
public bool? OptimizedForStreaming { get; set; }
|
public GetLibraryItemsLibraryOptimizedForStreaming? OptimizedForStreaming { get; set; }
|
||||||
|
|
||||||
[JsonProperty("videoProfile")]
|
|
||||||
public string? VideoProfile { get; set; }
|
|
||||||
|
|
||||||
[JsonProperty("indexes")]
|
|
||||||
public string? Indexes { get; set; }
|
|
||||||
|
|
||||||
[JsonProperty("hasThumbnail")]
|
[JsonProperty("hasThumbnail")]
|
||||||
public GetLibraryItemsHasThumbnail? HasThumbnail { get; set; } = LukeHagar.PlexAPI.SDK.Models.Requests.GetLibraryItemsHasThumbnail.False;
|
public GetLibraryItemsHasThumbnail? HasThumbnail { get; set; } = LukeHagar.PlexAPI.SDK.Models.Requests.GetLibraryItemsHasThumbnail.False;
|
||||||
|
|
||||||
[JsonProperty("Stream")]
|
|
||||||
public List<GetLibraryItemsStream>? Stream { get; set; }
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -0,0 +1,54 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// 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.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
#nullable enable
|
||||||
|
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
||||||
|
{
|
||||||
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
|
public class GetLibraryItemsProducer
|
||||||
|
{
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The unique role identifier.
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("id")]
|
||||||
|
public long Id { get; set; } = default!;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The filter string for the role.
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("filter")]
|
||||||
|
public string Filter { get; set; } = default!;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The actor's name.
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("tag")]
|
||||||
|
public string Tag { get; set; } = default!;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A key associated with the actor tag.
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("tagKey")]
|
||||||
|
public string TagKey { get; set; } = default!;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The character name or role.
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("role")]
|
||||||
|
public string? Role { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// URL for the role thumbnail image.
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("thumb")]
|
||||||
|
public string? Thumb { get; set; }
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -10,6 +10,11 @@
|
|||||||
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
||||||
{
|
{
|
||||||
using LukeHagar.PlexAPI.SDK.Utils;
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Concurrent;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The type of media to retrieve or filter by.<br/>
|
/// The type of media to retrieve or filter by.<br/>
|
||||||
@@ -23,17 +28,73 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
///
|
///
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public enum GetLibraryItemsQueryParamType
|
[JsonConverter(typeof(OpenEnumConverter))]
|
||||||
|
public class GetLibraryItemsQueryParamType : IEquatable<GetLibraryItemsQueryParamType>
|
||||||
{
|
{
|
||||||
Movie = 1,
|
public static readonly GetLibraryItemsQueryParamType Movie = new GetLibraryItemsQueryParamType(1);
|
||||||
TvShow = 2,
|
public static readonly GetLibraryItemsQueryParamType TvShow = new GetLibraryItemsQueryParamType(2);
|
||||||
Season = 3,
|
public static readonly GetLibraryItemsQueryParamType Season = new GetLibraryItemsQueryParamType(3);
|
||||||
Episode = 4,
|
public static readonly GetLibraryItemsQueryParamType Episode = new GetLibraryItemsQueryParamType(4);
|
||||||
Artist = 5,
|
public static readonly GetLibraryItemsQueryParamType Artist = new GetLibraryItemsQueryParamType(5);
|
||||||
Album = 6,
|
public static readonly GetLibraryItemsQueryParamType Album = new GetLibraryItemsQueryParamType(6);
|
||||||
Track = 7,
|
public static readonly GetLibraryItemsQueryParamType Track = new GetLibraryItemsQueryParamType(7);
|
||||||
PhotoAlbum = 8,
|
public static readonly GetLibraryItemsQueryParamType PhotoAlbum = new GetLibraryItemsQueryParamType(8);
|
||||||
Photo = 9,
|
public static readonly GetLibraryItemsQueryParamType Photo = new GetLibraryItemsQueryParamType(9);
|
||||||
|
|
||||||
|
private static readonly Dictionary <long, GetLibraryItemsQueryParamType> _knownValues =
|
||||||
|
new Dictionary <long, GetLibraryItemsQueryParamType> ()
|
||||||
|
{
|
||||||
|
[1] = Movie,
|
||||||
|
[2] = TvShow,
|
||||||
|
[3] = Season,
|
||||||
|
[4] = Episode,
|
||||||
|
[5] = Artist,
|
||||||
|
[6] = Album,
|
||||||
|
[7] = Track,
|
||||||
|
[8] = PhotoAlbum,
|
||||||
|
[9] = Photo
|
||||||
|
};
|
||||||
|
|
||||||
|
private static readonly ConcurrentDictionary<long, GetLibraryItemsQueryParamType> _values =
|
||||||
|
new ConcurrentDictionary<long, GetLibraryItemsQueryParamType>(_knownValues);
|
||||||
|
|
||||||
|
private GetLibraryItemsQueryParamType(long value)
|
||||||
|
{
|
||||||
|
Value = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
public long Value { get; }
|
||||||
|
|
||||||
|
public static GetLibraryItemsQueryParamType Of(long value)
|
||||||
|
{
|
||||||
|
return _values.GetOrAdd(value, _ => new GetLibraryItemsQueryParamType(value));
|
||||||
|
}
|
||||||
|
|
||||||
|
public static implicit operator GetLibraryItemsQueryParamType(long value) => Of(value);
|
||||||
|
public static implicit operator long(GetLibraryItemsQueryParamType getlibraryitemsqueryparamtype) => getlibraryitemsqueryparamtype.Value;
|
||||||
|
|
||||||
|
public static GetLibraryItemsQueryParamType[] Values()
|
||||||
|
{
|
||||||
|
return _values.Values.ToArray();
|
||||||
|
}
|
||||||
|
|
||||||
|
public override string ToString() => Value.ToString();
|
||||||
|
|
||||||
|
public bool IsKnown()
|
||||||
|
{
|
||||||
|
return _knownValues.ContainsKey(Value);
|
||||||
|
}
|
||||||
|
|
||||||
|
public override bool Equals(object? obj) => Equals(obj as GetLibraryItemsQueryParamType);
|
||||||
|
|
||||||
|
public bool Equals(GetLibraryItemsQueryParamType? other)
|
||||||
|
{
|
||||||
|
if (ReferenceEquals(this, other)) return true;
|
||||||
|
if (other is null) return false;
|
||||||
|
return string.Equals(Value, other.Value);
|
||||||
|
}
|
||||||
|
|
||||||
|
public override int GetHashCode() => Value.GetHashCode();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -11,6 +11,11 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
{
|
{
|
||||||
using LukeHagar.PlexAPI.SDK.Models.Requests;
|
using LukeHagar.PlexAPI.SDK.Models.Requests;
|
||||||
using LukeHagar.PlexAPI.SDK.Utils;
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Concurrent;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
|
||||||
public class GetLibraryItemsRequest
|
public class GetLibraryItemsRequest
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -16,39 +16,32 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
{
|
{
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The ID of the tag or actor.
|
/// The unique identifier for the role.<br/>
|
||||||
|
///
|
||||||
|
/// <remarks>
|
||||||
|
/// NOTE: This is different for each Plex server and is not globally unique.<br/>
|
||||||
|
///
|
||||||
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonProperty("id")]
|
[JsonProperty("id")]
|
||||||
public long? Id { get; set; }
|
public int Id { get; set; } = default!;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The filter used to find the actor or tag.
|
/// The display tag for the actor (typically the actor's name).
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("filter")]
|
|
||||||
public string? Filter { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// The thumbnail of the actor
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("thumb")]
|
|
||||||
public string? Thumb { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// The name of the tag or actor.
|
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonProperty("tag")]
|
[JsonProperty("tag")]
|
||||||
public string? Tag { get; set; }
|
public string Tag { get; set; } = default!;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Unique identifier for the tag.
|
/// The role played by the actor in the media item.
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("tagKey")]
|
|
||||||
public string? TagKey { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// The role of the actor or tag in the media.
|
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonProperty("role")]
|
[JsonProperty("role")]
|
||||||
public string? Role { get; set; }
|
public string? Role { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The absolute URL of the thumbnail image for the actor.
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("thumb")]
|
||||||
|
public string? Thumb { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -12,25 +12,25 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
using LukeHagar.PlexAPI.SDK.Utils;
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
public class GetSearchAllLibrariesMetaDataRating
|
public class GetLibraryItemsSimilar
|
||||||
{
|
{
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// A URI or path to the rating image.
|
/// The unique similar item identifier.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonProperty("image")]
|
[JsonProperty("id")]
|
||||||
public string Image { get; set; } = default!;
|
public long Id { get; set; } = default!;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The value of the rating.
|
/// The filter string for similar items.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonProperty("value")]
|
[JsonProperty("filter")]
|
||||||
public float Value { get; set; } = default!;
|
public string Filter { get; set; } = default!;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The type of rating (e.g., audience, critic).
|
/// The tag or title of the similar content.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonProperty("type")]
|
[JsonProperty("tag")]
|
||||||
public string Type { get; set; } = default!;
|
public string Tag { get; set; } = default!;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,234 +0,0 @@
|
|||||||
//------------------------------------------------------------------------------
|
|
||||||
// <auto-generated>
|
|
||||||
// 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.
|
|
||||||
// </auto-generated>
|
|
||||||
//------------------------------------------------------------------------------
|
|
||||||
#nullable enable
|
|
||||||
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|
||||||
{
|
|
||||||
using LukeHagar.PlexAPI.SDK.Utils;
|
|
||||||
using Newtonsoft.Json;
|
|
||||||
|
|
||||||
public class GetLibraryItemsStream
|
|
||||||
{
|
|
||||||
|
|
||||||
[JsonProperty("id")]
|
|
||||||
public long Id { get; set; } = default!;
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Type of stream (1 = video, 2 = audio, 3 = subtitle)
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("streamType")]
|
|
||||||
public long StreamType { get; set; } = default!;
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Indicates if this is the default stream
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("default")]
|
|
||||||
public bool? Default { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Indicates if the stream is selected
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("selected")]
|
|
||||||
public bool? Selected { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Codec used by the stream
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("codec")]
|
|
||||||
public string Codec { get; set; } = default!;
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// The index of the stream
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("index")]
|
|
||||||
public long Index { get; set; } = default!;
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// The bitrate of the stream in kbps
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("bitrate")]
|
|
||||||
public long? Bitrate { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// The color primaries of the video stream
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("colorPrimaries")]
|
|
||||||
public string? ColorPrimaries { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// The color range of the video stream
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("colorRange")]
|
|
||||||
public string? ColorRange { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// The color space of the video stream
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("colorSpace")]
|
|
||||||
public string? ColorSpace { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// The transfer characteristics (TRC) of the video stream
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("colorTrc")]
|
|
||||||
public string? ColorTrc { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// The bit depth of the video stream
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("bitDepth")]
|
|
||||||
public long? BitDepth { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// The chroma location of the video stream
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("chromaLocation")]
|
|
||||||
public string? ChromaLocation { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// The identifier of the video stream
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("streamIdentifier")]
|
|
||||||
public string? StreamIdentifier { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// The chroma subsampling format
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("chromaSubsampling")]
|
|
||||||
public string? ChromaSubsampling { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// The coded height of the video stream
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("codedHeight")]
|
|
||||||
public long? CodedHeight { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// The coded width of the video stream
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("codedWidth")]
|
|
||||||
public long? CodedWidth { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// The frame rate of the video stream
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("frameRate")]
|
|
||||||
public double? FrameRate { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Indicates if the stream has a scaling matrix
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("hasScalingMatrix")]
|
|
||||||
public bool? HasScalingMatrix { get; set; }
|
|
||||||
|
|
||||||
[JsonProperty("hearingImpaired")]
|
|
||||||
public bool? HearingImpaired { get; set; }
|
|
||||||
|
|
||||||
[JsonProperty("closedCaptions")]
|
|
||||||
public bool? ClosedCaptions { get; set; }
|
|
||||||
|
|
||||||
[JsonProperty("embeddedInVideo")]
|
|
||||||
public string? EmbeddedInVideo { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// The height of the video stream
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("height")]
|
|
||||||
public long? Height { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// The level of the video codec
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("level")]
|
|
||||||
public long? Level { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// The profile of the video codec
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("profile")]
|
|
||||||
public string? Profile { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Number of reference frames
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("refFrames")]
|
|
||||||
public long? RefFrames { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// The scan type (progressive or interlaced)
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("scanType")]
|
|
||||||
public string? ScanType { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// The width of the video stream
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("width")]
|
|
||||||
public long? Width { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Display title of the stream
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("displayTitle")]
|
|
||||||
public string? DisplayTitle { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Extended display title of the stream
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("extendedDisplayTitle")]
|
|
||||||
public string? ExtendedDisplayTitle { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Number of audio channels (for audio streams)
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("channels")]
|
|
||||||
public long? Channels { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// The language of the stream (for audio/subtitle streams)
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("language")]
|
|
||||||
public string? Language { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Language tag of the stream
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("languageTag")]
|
|
||||||
public string? LanguageTag { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Language code of the stream
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("languageCode")]
|
|
||||||
public string? LanguageCode { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// The audio channel layout
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("audioChannelLayout")]
|
|
||||||
public string? AudioChannelLayout { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Sampling rate of the audio stream in Hz
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("samplingRate")]
|
|
||||||
public long? SamplingRate { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Title of the subtitle track (for subtitle streams)
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("title")]
|
|
||||||
public string? Title { get; set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Indicates if the subtitle stream can auto-sync
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("canAutoSync")]
|
|
||||||
public bool? CanAutoSync { get; set; }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -9,36 +9,90 @@
|
|||||||
#nullable enable
|
#nullable enable
|
||||||
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
||||||
{
|
{
|
||||||
using LukeHagar.PlexAPI.SDK.Models.Requests;
|
|
||||||
using LukeHagar.PlexAPI.SDK.Utils;
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Concurrent;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
|
||||||
public class GetLibraryItemsType
|
/// <summary>
|
||||||
|
/// The type of media content in the Plex library. This can represent videos, music, or photos.<br/>
|
||||||
|
///
|
||||||
|
/// <remarks>
|
||||||
|
///
|
||||||
|
/// </remarks>
|
||||||
|
/// </summary>
|
||||||
|
[JsonConverter(typeof(OpenEnumConverter))]
|
||||||
|
public class GetLibraryItemsType : IEquatable<GetLibraryItemsType>
|
||||||
{
|
{
|
||||||
|
public static readonly GetLibraryItemsType Movie = new GetLibraryItemsType("movie");
|
||||||
|
public static readonly GetLibraryItemsType TvShow = new GetLibraryItemsType("show");
|
||||||
|
public static readonly GetLibraryItemsType Season = new GetLibraryItemsType("season");
|
||||||
|
public static readonly GetLibraryItemsType Episode = new GetLibraryItemsType("episode");
|
||||||
|
public static readonly GetLibraryItemsType Artist = new GetLibraryItemsType("artist");
|
||||||
|
public static readonly GetLibraryItemsType Album = new GetLibraryItemsType("album");
|
||||||
|
public static readonly GetLibraryItemsType Track = new GetLibraryItemsType("track");
|
||||||
|
public static readonly GetLibraryItemsType PhotoAlbum = new GetLibraryItemsType("photoalbum");
|
||||||
|
public static readonly GetLibraryItemsType Photo = new GetLibraryItemsType("photo");
|
||||||
|
public static readonly GetLibraryItemsType Collection = new GetLibraryItemsType("collection");
|
||||||
|
|
||||||
[JsonProperty("key")]
|
private static readonly Dictionary <string, GetLibraryItemsType> _knownValues =
|
||||||
public string Key { get; set; } = default!;
|
new Dictionary <string, GetLibraryItemsType> ()
|
||||||
|
{
|
||||||
|
["movie"] = Movie,
|
||||||
|
["show"] = TvShow,
|
||||||
|
["season"] = Season,
|
||||||
|
["episode"] = Episode,
|
||||||
|
["artist"] = Artist,
|
||||||
|
["album"] = Album,
|
||||||
|
["track"] = Track,
|
||||||
|
["photoalbum"] = PhotoAlbum,
|
||||||
|
["photo"] = Photo,
|
||||||
|
["collection"] = Collection
|
||||||
|
};
|
||||||
|
|
||||||
[JsonProperty("type")]
|
private static readonly ConcurrentDictionary<string, GetLibraryItemsType> _values =
|
||||||
public string Type { get; set; } = default!;
|
new ConcurrentDictionary<string, GetLibraryItemsType>(_knownValues);
|
||||||
|
|
||||||
[JsonProperty("subtype")]
|
private GetLibraryItemsType(string value)
|
||||||
public string? Subtype { get; set; }
|
{
|
||||||
|
if (value == null) throw new ArgumentNullException(nameof(value));
|
||||||
[JsonProperty("title")]
|
Value = value;
|
||||||
public string Title { get; set; } = default!;
|
|
||||||
|
|
||||||
[JsonProperty("active")]
|
|
||||||
public bool Active { get; set; } = default!;
|
|
||||||
|
|
||||||
[JsonProperty("Filter")]
|
|
||||||
public List<GetLibraryItemsFilter>? Filter { get; set; }
|
|
||||||
|
|
||||||
[JsonProperty("Sort")]
|
|
||||||
public List<GetLibraryItemsSort>? Sort { get; set; }
|
|
||||||
|
|
||||||
[JsonProperty("Field")]
|
|
||||||
public List<GetLibraryItemsField>? Field { get; set; }
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public string Value { get; }
|
||||||
|
|
||||||
|
public static GetLibraryItemsType Of(string value)
|
||||||
|
{
|
||||||
|
return _values.GetOrAdd(value, _ => new GetLibraryItemsType(value));
|
||||||
|
}
|
||||||
|
|
||||||
|
public static implicit operator GetLibraryItemsType(string value) => Of(value);
|
||||||
|
public static implicit operator string(GetLibraryItemsType getlibraryitemstype) => getlibraryitemstype.Value;
|
||||||
|
|
||||||
|
public static GetLibraryItemsType[] Values()
|
||||||
|
{
|
||||||
|
return _values.Values.ToArray();
|
||||||
|
}
|
||||||
|
|
||||||
|
public override string ToString() => Value.ToString();
|
||||||
|
|
||||||
|
public bool IsKnown()
|
||||||
|
{
|
||||||
|
return _knownValues.ContainsKey(Value);
|
||||||
|
}
|
||||||
|
|
||||||
|
public override bool Equals(object? obj) => Equals(obj as GetLibraryItemsType);
|
||||||
|
|
||||||
|
public bool Equals(GetLibraryItemsType? other)
|
||||||
|
{
|
||||||
|
if (ReferenceEquals(this, other)) return true;
|
||||||
|
if (other is null) return false;
|
||||||
|
return string.Equals(Value, other.Value);
|
||||||
|
}
|
||||||
|
|
||||||
|
public override int GetHashCode() => Value.GetHashCode();
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -15,7 +15,22 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
public class GetLibraryItemsWriter
|
public class GetLibraryItemsWriter
|
||||||
{
|
{
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Unique identifier for the writer.
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("id")]
|
||||||
|
public int Id { get; set; } = default!;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The role of Writer
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("tag")]
|
[JsonProperty("tag")]
|
||||||
public string? Tag { get; set; }
|
public string Tag { get; set; } = default!;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The absolute URL of the thumbnail image for the writer.
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("thumb")]
|
||||||
|
public string? Thumb { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -12,6 +12,10 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
using LukeHagar.PlexAPI.SDK.Models.Requests;
|
using LukeHagar.PlexAPI.SDK.Models.Requests;
|
||||||
using LukeHagar.PlexAPI.SDK.Utils;
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Concurrent;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
|
||||||
public class GetLibrarySectionsAllImage
|
public class GetLibrarySectionsAllImage
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
private GetLibrarySectionsAllLibraryOptimizedForStreamingType(string value) { Value = value; }
|
private GetLibrarySectionsAllLibraryOptimizedForStreamingType(string value) { Value = value; }
|
||||||
|
|
||||||
public string Value { get; private set; }
|
public string Value { get; private set; }
|
||||||
public static GetLibrarySectionsAllLibraryOptimizedForStreamingType GetLibrarySectionsAllOptimizedForStreaming1 { get { return new GetLibrarySectionsAllLibraryOptimizedForStreamingType("get-library-sections-all_optimizedForStreaming_1"); } }
|
public static GetLibrarySectionsAllLibraryOptimizedForStreamingType GetLibrarySectionsAllOptimizedForStreamingLibrary1 { get { return new GetLibrarySectionsAllLibraryOptimizedForStreamingType("get-library-sections-all_optimizedForStreaming_Library_1"); } }
|
||||||
|
|
||||||
public static GetLibrarySectionsAllLibraryOptimizedForStreamingType Boolean { get { return new GetLibrarySectionsAllLibraryOptimizedForStreamingType("boolean"); } }
|
public static GetLibrarySectionsAllLibraryOptimizedForStreamingType Boolean { get { return new GetLibrarySectionsAllLibraryOptimizedForStreamingType("boolean"); } }
|
||||||
|
|
||||||
@@ -34,7 +34,7 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
public static implicit operator String(GetLibrarySectionsAllLibraryOptimizedForStreamingType v) { return v.Value; }
|
public static implicit operator String(GetLibrarySectionsAllLibraryOptimizedForStreamingType v) { return v.Value; }
|
||||||
public static GetLibrarySectionsAllLibraryOptimizedForStreamingType FromString(string v) {
|
public static GetLibrarySectionsAllLibraryOptimizedForStreamingType FromString(string v) {
|
||||||
switch(v) {
|
switch(v) {
|
||||||
case "get-library-sections-all_optimizedForStreaming_1": return GetLibrarySectionsAllOptimizedForStreaming1;
|
case "get-library-sections-all_optimizedForStreaming_Library_1": return GetLibrarySectionsAllOptimizedForStreamingLibrary1;
|
||||||
case "boolean": return Boolean;
|
case "boolean": return Boolean;
|
||||||
case "null": return Null;
|
case "null": return Null;
|
||||||
default: throw new ArgumentException("Invalid value for GetLibrarySectionsAllLibraryOptimizedForStreamingType");
|
default: throw new ArgumentException("Invalid value for GetLibrarySectionsAllLibraryOptimizedForStreamingType");
|
||||||
@@ -66,7 +66,7 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
}
|
}
|
||||||
|
|
||||||
[SpeakeasyMetadata("form:explode=true")]
|
[SpeakeasyMetadata("form:explode=true")]
|
||||||
public GetLibrarySectionsAllOptimizedForStreaming1? GetLibrarySectionsAllOptimizedForStreaming1 { get; set; }
|
public GetLibrarySectionsAllOptimizedForStreamingLibrary1? GetLibrarySectionsAllOptimizedForStreamingLibrary1 { get; set; }
|
||||||
|
|
||||||
[SpeakeasyMetadata("form:explode=true")]
|
[SpeakeasyMetadata("form:explode=true")]
|
||||||
public bool? Boolean { get; set; }
|
public bool? Boolean { get; set; }
|
||||||
@@ -74,11 +74,11 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
public GetLibrarySectionsAllLibraryOptimizedForStreamingType Type { get; set; }
|
public GetLibrarySectionsAllLibraryOptimizedForStreamingType Type { get; set; }
|
||||||
|
|
||||||
|
|
||||||
public static GetLibrarySectionsAllLibraryOptimizedForStreaming CreateGetLibrarySectionsAllOptimizedForStreaming1(GetLibrarySectionsAllOptimizedForStreaming1 getLibrarySectionsAllOptimizedForStreaming1) {
|
public static GetLibrarySectionsAllLibraryOptimizedForStreaming CreateGetLibrarySectionsAllOptimizedForStreamingLibrary1(GetLibrarySectionsAllOptimizedForStreamingLibrary1 getLibrarySectionsAllOptimizedForStreamingLibrary1) {
|
||||||
GetLibrarySectionsAllLibraryOptimizedForStreamingType typ = GetLibrarySectionsAllLibraryOptimizedForStreamingType.GetLibrarySectionsAllOptimizedForStreaming1;
|
GetLibrarySectionsAllLibraryOptimizedForStreamingType typ = GetLibrarySectionsAllLibraryOptimizedForStreamingType.GetLibrarySectionsAllOptimizedForStreamingLibrary1;
|
||||||
|
|
||||||
GetLibrarySectionsAllLibraryOptimizedForStreaming res = new GetLibrarySectionsAllLibraryOptimizedForStreaming(typ);
|
GetLibrarySectionsAllLibraryOptimizedForStreaming res = new GetLibrarySectionsAllLibraryOptimizedForStreaming(typ);
|
||||||
res.GetLibrarySectionsAllOptimizedForStreaming1 = getLibrarySectionsAllOptimizedForStreaming1;
|
res.GetLibrarySectionsAllOptimizedForStreamingLibrary1 = getLibrarySectionsAllOptimizedForStreamingLibrary1;
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -114,14 +114,14 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
return new GetLibrarySectionsAllLibraryOptimizedForStreaming(GetLibrarySectionsAllLibraryOptimizedForStreamingType.GetLibrarySectionsAllOptimizedForStreaming1)
|
return new GetLibrarySectionsAllLibraryOptimizedForStreaming(GetLibrarySectionsAllLibraryOptimizedForStreamingType.GetLibrarySectionsAllOptimizedForStreamingLibrary1)
|
||||||
{
|
{
|
||||||
GetLibrarySectionsAllOptimizedForStreaming1 = ResponseBodyDeserializer.DeserializeUndiscriminatedUnionMember<GetLibrarySectionsAllOptimizedForStreaming1>(json)
|
GetLibrarySectionsAllOptimizedForStreamingLibrary1 = ResponseBodyDeserializer.DeserializeUndiscriminatedUnionMember<GetLibrarySectionsAllOptimizedForStreamingLibrary1>(json)
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
catch (ResponseBodyDeserializer.MissingMemberException)
|
catch (ResponseBodyDeserializer.MissingMemberException)
|
||||||
{
|
{
|
||||||
fallbackCandidates.Add((typeof(GetLibrarySectionsAllOptimizedForStreaming1), new GetLibrarySectionsAllLibraryOptimizedForStreaming(GetLibrarySectionsAllLibraryOptimizedForStreamingType.GetLibrarySectionsAllOptimizedForStreaming1), "GetLibrarySectionsAllOptimizedForStreaming1"));
|
fallbackCandidates.Add((typeof(GetLibrarySectionsAllOptimizedForStreamingLibrary1), new GetLibrarySectionsAllLibraryOptimizedForStreaming(GetLibrarySectionsAllLibraryOptimizedForStreamingType.GetLibrarySectionsAllOptimizedForStreamingLibrary1), "GetLibrarySectionsAllOptimizedForStreamingLibrary1"));
|
||||||
}
|
}
|
||||||
catch (ResponseBodyDeserializer.DeserializationException)
|
catch (ResponseBodyDeserializer.DeserializationException)
|
||||||
{
|
{
|
||||||
@@ -180,9 +180,9 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
writer.WriteRawValue("null");
|
writer.WriteRawValue("null");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (res.GetLibrarySectionsAllOptimizedForStreaming1 != null)
|
if (res.GetLibrarySectionsAllOptimizedForStreamingLibrary1 != null)
|
||||||
{
|
{
|
||||||
writer.WriteRawValue(Utilities.SerializeJSON(res.GetLibrarySectionsAllOptimizedForStreaming1));
|
writer.WriteRawValue(Utilities.SerializeJSON(res.GetLibrarySectionsAllOptimizedForStreamingLibrary1));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (res.Boolean != null)
|
if (res.Boolean != null)
|
||||||
|
|||||||
@@ -12,50 +12,68 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
using LukeHagar.PlexAPI.SDK.Utils;
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
using System;
|
using System;
|
||||||
|
using System.Collections.Concurrent;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
|
||||||
public enum GetLibrarySectionsAllLibraryResponseType
|
[JsonConverter(typeof(OpenEnumConverter))]
|
||||||
|
public class GetLibrarySectionsAllLibraryResponseType : IEquatable<GetLibrarySectionsAllLibraryResponseType>
|
||||||
{
|
{
|
||||||
[JsonProperty("coverPoster")]
|
public static readonly GetLibrarySectionsAllLibraryResponseType CoverPoster = new GetLibrarySectionsAllLibraryResponseType("coverPoster");
|
||||||
CoverPoster,
|
public static readonly GetLibrarySectionsAllLibraryResponseType Background = new GetLibrarySectionsAllLibraryResponseType("background");
|
||||||
[JsonProperty("background")]
|
public static readonly GetLibrarySectionsAllLibraryResponseType Snapshot = new GetLibrarySectionsAllLibraryResponseType("snapshot");
|
||||||
Background,
|
public static readonly GetLibrarySectionsAllLibraryResponseType ClearLogo = new GetLibrarySectionsAllLibraryResponseType("clearLogo");
|
||||||
[JsonProperty("snapshot")]
|
|
||||||
Snapshot,
|
private static readonly Dictionary <string, GetLibrarySectionsAllLibraryResponseType> _knownValues =
|
||||||
[JsonProperty("clearLogo")]
|
new Dictionary <string, GetLibrarySectionsAllLibraryResponseType> ()
|
||||||
ClearLogo,
|
{
|
||||||
|
["coverPoster"] = CoverPoster,
|
||||||
|
["background"] = Background,
|
||||||
|
["snapshot"] = Snapshot,
|
||||||
|
["clearLogo"] = ClearLogo
|
||||||
|
};
|
||||||
|
|
||||||
|
private static readonly ConcurrentDictionary<string, GetLibrarySectionsAllLibraryResponseType> _values =
|
||||||
|
new ConcurrentDictionary<string, GetLibrarySectionsAllLibraryResponseType>(_knownValues);
|
||||||
|
|
||||||
|
private GetLibrarySectionsAllLibraryResponseType(string value)
|
||||||
|
{
|
||||||
|
if (value == null) throw new ArgumentNullException(nameof(value));
|
||||||
|
Value = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static class GetLibrarySectionsAllLibraryResponseTypeExtension
|
public string Value { get; }
|
||||||
|
|
||||||
|
public static GetLibrarySectionsAllLibraryResponseType Of(string value)
|
||||||
{
|
{
|
||||||
public static string Value(this GetLibrarySectionsAllLibraryResponseType value)
|
return _values.GetOrAdd(value, _ => new GetLibrarySectionsAllLibraryResponseType(value));
|
||||||
{
|
|
||||||
return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString())[0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public static GetLibrarySectionsAllLibraryResponseType ToEnum(this string value)
|
public static implicit operator GetLibrarySectionsAllLibraryResponseType(string value) => Of(value);
|
||||||
|
public static implicit operator string(GetLibrarySectionsAllLibraryResponseType getlibrarysectionsalllibraryresponsetype) => getlibrarysectionsalllibraryresponsetype.Value;
|
||||||
|
|
||||||
|
public static GetLibrarySectionsAllLibraryResponseType[] Values()
|
||||||
{
|
{
|
||||||
foreach(var field in typeof(GetLibrarySectionsAllLibraryResponseType).GetFields())
|
return _values.Values.ToArray();
|
||||||
{
|
|
||||||
var attributes = field.GetCustomAttributes(typeof(JsonPropertyAttribute), false);
|
|
||||||
if (attributes.Length == 0)
|
|
||||||
{
|
|
||||||
continue;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
var attribute = attributes[0] as JsonPropertyAttribute;
|
public override string ToString() => Value.ToString();
|
||||||
if (attribute != null && attribute.PropertyName == value)
|
|
||||||
{
|
|
||||||
var enumVal = field.GetValue(null);
|
|
||||||
|
|
||||||
if (enumVal is GetLibrarySectionsAllLibraryResponseType)
|
public bool IsKnown()
|
||||||
{
|
{
|
||||||
return (GetLibrarySectionsAllLibraryResponseType)enumVal;
|
return _knownValues.ContainsKey(Value);
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
throw new Exception($"Unknown value {value} for enum GetLibrarySectionsAllLibraryResponseType");
|
public override bool Equals(object? obj) => Equals(obj as GetLibrarySectionsAllLibraryResponseType);
|
||||||
|
|
||||||
|
public bool Equals(GetLibrarySectionsAllLibraryResponseType? other)
|
||||||
|
{
|
||||||
|
if (ReferenceEquals(this, other)) return true;
|
||||||
|
if (other is null) return false;
|
||||||
|
return string.Equals(Value, other.Value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public override int GetHashCode() => Value.GetHashCode();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -12,6 +12,9 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
using LukeHagar.PlexAPI.SDK.Utils;
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
using System;
|
using System;
|
||||||
|
using System.Collections.Concurrent;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The type of media content in the Plex library. This can represent videos, music, or photos.<br/>
|
/// The type of media content in the Plex library. This can represent videos, music, or photos.<br/>
|
||||||
@@ -20,61 +23,76 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
///
|
///
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public enum GetLibrarySectionsAllLibraryType
|
[JsonConverter(typeof(OpenEnumConverter))]
|
||||||
|
public class GetLibrarySectionsAllLibraryType : IEquatable<GetLibrarySectionsAllLibraryType>
|
||||||
{
|
{
|
||||||
[JsonProperty("movie")]
|
public static readonly GetLibrarySectionsAllLibraryType Movie = new GetLibrarySectionsAllLibraryType("movie");
|
||||||
Movie,
|
public static readonly GetLibrarySectionsAllLibraryType TvShow = new GetLibrarySectionsAllLibraryType("show");
|
||||||
[JsonProperty("show")]
|
public static readonly GetLibrarySectionsAllLibraryType Season = new GetLibrarySectionsAllLibraryType("season");
|
||||||
TvShow,
|
public static readonly GetLibrarySectionsAllLibraryType Episode = new GetLibrarySectionsAllLibraryType("episode");
|
||||||
[JsonProperty("season")]
|
public static readonly GetLibrarySectionsAllLibraryType Artist = new GetLibrarySectionsAllLibraryType("artist");
|
||||||
Season,
|
public static readonly GetLibrarySectionsAllLibraryType Album = new GetLibrarySectionsAllLibraryType("album");
|
||||||
[JsonProperty("episode")]
|
public static readonly GetLibrarySectionsAllLibraryType Track = new GetLibrarySectionsAllLibraryType("track");
|
||||||
Episode,
|
public static readonly GetLibrarySectionsAllLibraryType PhotoAlbum = new GetLibrarySectionsAllLibraryType("photoalbum");
|
||||||
[JsonProperty("artist")]
|
public static readonly GetLibrarySectionsAllLibraryType Photo = new GetLibrarySectionsAllLibraryType("photo");
|
||||||
Artist,
|
public static readonly GetLibrarySectionsAllLibraryType Collection = new GetLibrarySectionsAllLibraryType("collection");
|
||||||
[JsonProperty("album")]
|
|
||||||
Album,
|
private static readonly Dictionary <string, GetLibrarySectionsAllLibraryType> _knownValues =
|
||||||
[JsonProperty("track")]
|
new Dictionary <string, GetLibrarySectionsAllLibraryType> ()
|
||||||
Track,
|
{
|
||||||
[JsonProperty("photoalbum")]
|
["movie"] = Movie,
|
||||||
PhotoAlbum,
|
["show"] = TvShow,
|
||||||
[JsonProperty("photo")]
|
["season"] = Season,
|
||||||
Photo,
|
["episode"] = Episode,
|
||||||
[JsonProperty("collection")]
|
["artist"] = Artist,
|
||||||
Collection,
|
["album"] = Album,
|
||||||
|
["track"] = Track,
|
||||||
|
["photoalbum"] = PhotoAlbum,
|
||||||
|
["photo"] = Photo,
|
||||||
|
["collection"] = Collection
|
||||||
|
};
|
||||||
|
|
||||||
|
private static readonly ConcurrentDictionary<string, GetLibrarySectionsAllLibraryType> _values =
|
||||||
|
new ConcurrentDictionary<string, GetLibrarySectionsAllLibraryType>(_knownValues);
|
||||||
|
|
||||||
|
private GetLibrarySectionsAllLibraryType(string value)
|
||||||
|
{
|
||||||
|
if (value == null) throw new ArgumentNullException(nameof(value));
|
||||||
|
Value = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static class GetLibrarySectionsAllLibraryTypeExtension
|
public string Value { get; }
|
||||||
|
|
||||||
|
public static GetLibrarySectionsAllLibraryType Of(string value)
|
||||||
{
|
{
|
||||||
public static string Value(this GetLibrarySectionsAllLibraryType value)
|
return _values.GetOrAdd(value, _ => new GetLibrarySectionsAllLibraryType(value));
|
||||||
{
|
|
||||||
return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString())[0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public static GetLibrarySectionsAllLibraryType ToEnum(this string value)
|
public static implicit operator GetLibrarySectionsAllLibraryType(string value) => Of(value);
|
||||||
|
public static implicit operator string(GetLibrarySectionsAllLibraryType getlibrarysectionsalllibrarytype) => getlibrarysectionsalllibrarytype.Value;
|
||||||
|
|
||||||
|
public static GetLibrarySectionsAllLibraryType[] Values()
|
||||||
{
|
{
|
||||||
foreach(var field in typeof(GetLibrarySectionsAllLibraryType).GetFields())
|
return _values.Values.ToArray();
|
||||||
{
|
|
||||||
var attributes = field.GetCustomAttributes(typeof(JsonPropertyAttribute), false);
|
|
||||||
if (attributes.Length == 0)
|
|
||||||
{
|
|
||||||
continue;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
var attribute = attributes[0] as JsonPropertyAttribute;
|
public override string ToString() => Value.ToString();
|
||||||
if (attribute != null && attribute.PropertyName == value)
|
|
||||||
{
|
|
||||||
var enumVal = field.GetValue(null);
|
|
||||||
|
|
||||||
if (enumVal is GetLibrarySectionsAllLibraryType)
|
public bool IsKnown()
|
||||||
{
|
{
|
||||||
return (GetLibrarySectionsAllLibraryType)enumVal;
|
return _knownValues.ContainsKey(Value);
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
throw new Exception($"Unknown value {value} for enum GetLibrarySectionsAllLibraryType");
|
public override bool Equals(object? obj) => Equals(obj as GetLibrarySectionsAllLibraryType);
|
||||||
|
|
||||||
|
public bool Equals(GetLibrarySectionsAllLibraryType? other)
|
||||||
|
{
|
||||||
|
if (ReferenceEquals(this, other)) return true;
|
||||||
|
if (other is null) return false;
|
||||||
|
return string.Equals(Value, other.Value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public override int GetHashCode() => Value.GetHashCode();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -63,13 +63,13 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
/// The unique identifier for the library section.
|
/// The unique identifier for the library section.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonProperty("librarySectionID")]
|
[JsonProperty("librarySectionID")]
|
||||||
public long LibrarySectionID { get; set; } = default!;
|
public long? LibrarySectionID { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The title of the library section.
|
/// The title of the library section.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonProperty("librarySectionTitle")]
|
[JsonProperty("librarySectionTitle")]
|
||||||
public string LibrarySectionTitle { get; set; } = default!;
|
public string? LibrarySectionTitle { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The universally unique identifier for the library section.
|
/// The universally unique identifier for the library section.
|
||||||
|
|||||||
@@ -13,7 +13,10 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
using LukeHagar.PlexAPI.SDK.Utils;
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
using NodaTime;
|
using NodaTime;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Concurrent;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Unknown<br/>
|
/// Unknown<br/>
|
||||||
@@ -164,7 +167,7 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
/// The original release date of the media item.
|
/// The original release date of the media item.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonProperty("originallyAvailableAt")]
|
[JsonProperty("originallyAvailableAt")]
|
||||||
public LocalDate OriginallyAvailableAt { get; set; } = default!;
|
public LocalDate? OriginallyAvailableAt { get; set; }
|
||||||
|
|
||||||
[JsonProperty("addedAt")]
|
[JsonProperty("addedAt")]
|
||||||
public long AddedAt { get; set; } = default!;
|
public long AddedAt { get; set; } = default!;
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
private GetLibrarySectionsAllOptimizedForStreamingType(string value) { Value = value; }
|
private GetLibrarySectionsAllOptimizedForStreamingType(string value) { Value = value; }
|
||||||
|
|
||||||
public string Value { get; private set; }
|
public string Value { get; private set; }
|
||||||
public static GetLibrarySectionsAllOptimizedForStreamingType OptimizedForStreaming1 { get { return new GetLibrarySectionsAllOptimizedForStreamingType("optimizedForStreaming_1"); } }
|
public static GetLibrarySectionsAllOptimizedForStreamingType GetLibrarySectionsAllOptimizedForStreaming1 { get { return new GetLibrarySectionsAllOptimizedForStreamingType("get-library-sections-all_optimizedForStreaming_1"); } }
|
||||||
|
|
||||||
public static GetLibrarySectionsAllOptimizedForStreamingType Boolean { get { return new GetLibrarySectionsAllOptimizedForStreamingType("boolean"); } }
|
public static GetLibrarySectionsAllOptimizedForStreamingType Boolean { get { return new GetLibrarySectionsAllOptimizedForStreamingType("boolean"); } }
|
||||||
|
|
||||||
@@ -34,7 +34,7 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
public static implicit operator String(GetLibrarySectionsAllOptimizedForStreamingType v) { return v.Value; }
|
public static implicit operator String(GetLibrarySectionsAllOptimizedForStreamingType v) { return v.Value; }
|
||||||
public static GetLibrarySectionsAllOptimizedForStreamingType FromString(string v) {
|
public static GetLibrarySectionsAllOptimizedForStreamingType FromString(string v) {
|
||||||
switch(v) {
|
switch(v) {
|
||||||
case "optimizedForStreaming_1": return OptimizedForStreaming1;
|
case "get-library-sections-all_optimizedForStreaming_1": return GetLibrarySectionsAllOptimizedForStreaming1;
|
||||||
case "boolean": return Boolean;
|
case "boolean": return Boolean;
|
||||||
case "null": return Null;
|
case "null": return Null;
|
||||||
default: throw new ArgumentException("Invalid value for GetLibrarySectionsAllOptimizedForStreamingType");
|
default: throw new ArgumentException("Invalid value for GetLibrarySectionsAllOptimizedForStreamingType");
|
||||||
@@ -66,7 +66,7 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
}
|
}
|
||||||
|
|
||||||
[SpeakeasyMetadata("form:explode=true")]
|
[SpeakeasyMetadata("form:explode=true")]
|
||||||
public OptimizedForStreaming1? OptimizedForStreaming1 { get; set; }
|
public GetLibrarySectionsAllOptimizedForStreaming1? GetLibrarySectionsAllOptimizedForStreaming1 { get; set; }
|
||||||
|
|
||||||
[SpeakeasyMetadata("form:explode=true")]
|
[SpeakeasyMetadata("form:explode=true")]
|
||||||
public bool? Boolean { get; set; }
|
public bool? Boolean { get; set; }
|
||||||
@@ -74,11 +74,11 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
public GetLibrarySectionsAllOptimizedForStreamingType Type { get; set; }
|
public GetLibrarySectionsAllOptimizedForStreamingType Type { get; set; }
|
||||||
|
|
||||||
|
|
||||||
public static GetLibrarySectionsAllOptimizedForStreaming CreateOptimizedForStreaming1(OptimizedForStreaming1 optimizedForStreaming1) {
|
public static GetLibrarySectionsAllOptimizedForStreaming CreateGetLibrarySectionsAllOptimizedForStreaming1(GetLibrarySectionsAllOptimizedForStreaming1 getLibrarySectionsAllOptimizedForStreaming1) {
|
||||||
GetLibrarySectionsAllOptimizedForStreamingType typ = GetLibrarySectionsAllOptimizedForStreamingType.OptimizedForStreaming1;
|
GetLibrarySectionsAllOptimizedForStreamingType typ = GetLibrarySectionsAllOptimizedForStreamingType.GetLibrarySectionsAllOptimizedForStreaming1;
|
||||||
|
|
||||||
GetLibrarySectionsAllOptimizedForStreaming res = new GetLibrarySectionsAllOptimizedForStreaming(typ);
|
GetLibrarySectionsAllOptimizedForStreaming res = new GetLibrarySectionsAllOptimizedForStreaming(typ);
|
||||||
res.OptimizedForStreaming1 = optimizedForStreaming1;
|
res.GetLibrarySectionsAllOptimizedForStreaming1 = getLibrarySectionsAllOptimizedForStreaming1;
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -114,14 +114,14 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
return new GetLibrarySectionsAllOptimizedForStreaming(GetLibrarySectionsAllOptimizedForStreamingType.OptimizedForStreaming1)
|
return new GetLibrarySectionsAllOptimizedForStreaming(GetLibrarySectionsAllOptimizedForStreamingType.GetLibrarySectionsAllOptimizedForStreaming1)
|
||||||
{
|
{
|
||||||
OptimizedForStreaming1 = ResponseBodyDeserializer.DeserializeUndiscriminatedUnionMember<OptimizedForStreaming1>(json)
|
GetLibrarySectionsAllOptimizedForStreaming1 = ResponseBodyDeserializer.DeserializeUndiscriminatedUnionMember<GetLibrarySectionsAllOptimizedForStreaming1>(json)
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
catch (ResponseBodyDeserializer.MissingMemberException)
|
catch (ResponseBodyDeserializer.MissingMemberException)
|
||||||
{
|
{
|
||||||
fallbackCandidates.Add((typeof(OptimizedForStreaming1), new GetLibrarySectionsAllOptimizedForStreaming(GetLibrarySectionsAllOptimizedForStreamingType.OptimizedForStreaming1), "OptimizedForStreaming1"));
|
fallbackCandidates.Add((typeof(GetLibrarySectionsAllOptimizedForStreaming1), new GetLibrarySectionsAllOptimizedForStreaming(GetLibrarySectionsAllOptimizedForStreamingType.GetLibrarySectionsAllOptimizedForStreaming1), "GetLibrarySectionsAllOptimizedForStreaming1"));
|
||||||
}
|
}
|
||||||
catch (ResponseBodyDeserializer.DeserializationException)
|
catch (ResponseBodyDeserializer.DeserializationException)
|
||||||
{
|
{
|
||||||
@@ -180,9 +180,9 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
writer.WriteRawValue("null");
|
writer.WriteRawValue("null");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (res.OptimizedForStreaming1 != null)
|
if (res.GetLibrarySectionsAllOptimizedForStreaming1 != null)
|
||||||
{
|
{
|
||||||
writer.WriteRawValue(Utilities.SerializeJSON(res.OptimizedForStreaming1));
|
writer.WriteRawValue(Utilities.SerializeJSON(res.GetLibrarySectionsAllOptimizedForStreaming1));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (res.Boolean != null)
|
if (res.Boolean != null)
|
||||||
|
|||||||
@@ -11,21 +11,10 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
{
|
{
|
||||||
using LukeHagar.PlexAPI.SDK.Utils;
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
|
|
||||||
/// <summary>
|
public enum GetLibrarySectionsAllOptimizedForStreamingLibrary1
|
||||||
/// Stream type:<br/>
|
|
||||||
///
|
|
||||||
/// <remarks>
|
|
||||||
/// - 1 = video<br/>
|
|
||||||
/// - 2 = audio<br/>
|
|
||||||
/// - 3 = subtitle<br/>
|
|
||||||
///
|
|
||||||
/// </remarks>
|
|
||||||
/// </summary>
|
|
||||||
public enum StreamType
|
|
||||||
{
|
{
|
||||||
Video = 1,
|
Zero = 0,
|
||||||
Audio = 2,
|
One = 1,
|
||||||
Subtitle = 3,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -10,6 +10,11 @@
|
|||||||
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
||||||
{
|
{
|
||||||
using LukeHagar.PlexAPI.SDK.Utils;
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Concurrent;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The type of media to retrieve or filter by.<br/>
|
/// The type of media to retrieve or filter by.<br/>
|
||||||
@@ -23,17 +28,73 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
///
|
///
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public enum GetLibrarySectionsAllQueryParamType
|
[JsonConverter(typeof(OpenEnumConverter))]
|
||||||
|
public class GetLibrarySectionsAllQueryParamType : IEquatable<GetLibrarySectionsAllQueryParamType>
|
||||||
{
|
{
|
||||||
Movie = 1,
|
public static readonly GetLibrarySectionsAllQueryParamType Movie = new GetLibrarySectionsAllQueryParamType(1);
|
||||||
TvShow = 2,
|
public static readonly GetLibrarySectionsAllQueryParamType TvShow = new GetLibrarySectionsAllQueryParamType(2);
|
||||||
Season = 3,
|
public static readonly GetLibrarySectionsAllQueryParamType Season = new GetLibrarySectionsAllQueryParamType(3);
|
||||||
Episode = 4,
|
public static readonly GetLibrarySectionsAllQueryParamType Episode = new GetLibrarySectionsAllQueryParamType(4);
|
||||||
Artist = 5,
|
public static readonly GetLibrarySectionsAllQueryParamType Artist = new GetLibrarySectionsAllQueryParamType(5);
|
||||||
Album = 6,
|
public static readonly GetLibrarySectionsAllQueryParamType Album = new GetLibrarySectionsAllQueryParamType(6);
|
||||||
Track = 7,
|
public static readonly GetLibrarySectionsAllQueryParamType Track = new GetLibrarySectionsAllQueryParamType(7);
|
||||||
PhotoAlbum = 8,
|
public static readonly GetLibrarySectionsAllQueryParamType PhotoAlbum = new GetLibrarySectionsAllQueryParamType(8);
|
||||||
Photo = 9,
|
public static readonly GetLibrarySectionsAllQueryParamType Photo = new GetLibrarySectionsAllQueryParamType(9);
|
||||||
|
|
||||||
|
private static readonly Dictionary <long, GetLibrarySectionsAllQueryParamType> _knownValues =
|
||||||
|
new Dictionary <long, GetLibrarySectionsAllQueryParamType> ()
|
||||||
|
{
|
||||||
|
[1] = Movie,
|
||||||
|
[2] = TvShow,
|
||||||
|
[3] = Season,
|
||||||
|
[4] = Episode,
|
||||||
|
[5] = Artist,
|
||||||
|
[6] = Album,
|
||||||
|
[7] = Track,
|
||||||
|
[8] = PhotoAlbum,
|
||||||
|
[9] = Photo
|
||||||
|
};
|
||||||
|
|
||||||
|
private static readonly ConcurrentDictionary<long, GetLibrarySectionsAllQueryParamType> _values =
|
||||||
|
new ConcurrentDictionary<long, GetLibrarySectionsAllQueryParamType>(_knownValues);
|
||||||
|
|
||||||
|
private GetLibrarySectionsAllQueryParamType(long value)
|
||||||
|
{
|
||||||
|
Value = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
public long Value { get; }
|
||||||
|
|
||||||
|
public static GetLibrarySectionsAllQueryParamType Of(long value)
|
||||||
|
{
|
||||||
|
return _values.GetOrAdd(value, _ => new GetLibrarySectionsAllQueryParamType(value));
|
||||||
|
}
|
||||||
|
|
||||||
|
public static implicit operator GetLibrarySectionsAllQueryParamType(long value) => Of(value);
|
||||||
|
public static implicit operator long(GetLibrarySectionsAllQueryParamType getlibrarysectionsallqueryparamtype) => getlibrarysectionsallqueryparamtype.Value;
|
||||||
|
|
||||||
|
public static GetLibrarySectionsAllQueryParamType[] Values()
|
||||||
|
{
|
||||||
|
return _values.Values.ToArray();
|
||||||
|
}
|
||||||
|
|
||||||
|
public override string ToString() => Value.ToString();
|
||||||
|
|
||||||
|
public bool IsKnown()
|
||||||
|
{
|
||||||
|
return _knownValues.ContainsKey(Value);
|
||||||
|
}
|
||||||
|
|
||||||
|
public override bool Equals(object? obj) => Equals(obj as GetLibrarySectionsAllQueryParamType);
|
||||||
|
|
||||||
|
public bool Equals(GetLibrarySectionsAllQueryParamType? other)
|
||||||
|
{
|
||||||
|
if (ReferenceEquals(this, other)) return true;
|
||||||
|
if (other is null) return false;
|
||||||
|
return string.Equals(Value, other.Value);
|
||||||
|
}
|
||||||
|
|
||||||
|
public override int GetHashCode() => Value.GetHashCode();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -11,6 +11,11 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
{
|
{
|
||||||
using LukeHagar.PlexAPI.SDK.Models.Requests;
|
using LukeHagar.PlexAPI.SDK.Models.Requests;
|
||||||
using LukeHagar.PlexAPI.SDK.Utils;
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Concurrent;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
|
||||||
public class GetLibrarySectionsAllRequest
|
public class GetLibrarySectionsAllRequest
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -9,7 +9,6 @@
|
|||||||
#nullable enable
|
#nullable enable
|
||||||
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
||||||
{
|
{
|
||||||
using LukeHagar.PlexAPI.SDK.Models.Requests;
|
|
||||||
using LukeHagar.PlexAPI.SDK.Utils;
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
@@ -26,14 +25,14 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
/// Stream type:<br/>
|
/// Stream type:<br/>
|
||||||
///
|
///
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// - 1 = video<br/>
|
/// - VIDEO = 1<br/>
|
||||||
/// - 2 = audio<br/>
|
/// - AUDIO = 2<br/>
|
||||||
/// - 3 = subtitle<br/>
|
/// - SUBTITLE = 3<br/>
|
||||||
///
|
///
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonProperty("streamType")]
|
[JsonProperty("streamType")]
|
||||||
public GetLibrarySectionsAllStreamType StreamType { get; set; } = default!;
|
public long StreamType { get; } = 1;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Format of the stream (e.g., srt).
|
/// Format of the stream (e.g., srt).
|
||||||
|
|||||||
@@ -1,31 +0,0 @@
|
|||||||
//------------------------------------------------------------------------------
|
|
||||||
// <auto-generated>
|
|
||||||
// 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.
|
|
||||||
// </auto-generated>
|
|
||||||
//------------------------------------------------------------------------------
|
|
||||||
#nullable enable
|
|
||||||
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|
||||||
{
|
|
||||||
using LukeHagar.PlexAPI.SDK.Utils;
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Stream type:<br/>
|
|
||||||
///
|
|
||||||
/// <remarks>
|
|
||||||
/// - 1 = video<br/>
|
|
||||||
/// - 2 = audio<br/>
|
|
||||||
/// - 3 = subtitle<br/>
|
|
||||||
///
|
|
||||||
/// </remarks>
|
|
||||||
/// </summary>
|
|
||||||
public enum GetLibrarySectionsAllStreamType
|
|
||||||
{
|
|
||||||
Video = 1,
|
|
||||||
Audio = 2,
|
|
||||||
Subtitle = 3,
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -0,0 +1,33 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// 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.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
#nullable enable
|
||||||
|
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
||||||
|
{
|
||||||
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Attributes associated with the marker.
|
||||||
|
/// </summary>
|
||||||
|
public class GetMediaMetaDataAttributes
|
||||||
|
{
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The identifier for the attributes.
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("id")]
|
||||||
|
public long Id { get; set; } = default!;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The version number of the marker attributes.
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("version")]
|
||||||
|
public long? Version { get; set; }
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -12,22 +12,28 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
using LukeHagar.PlexAPI.SDK.Utils;
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
public class GetLibraryItemsLibraryFilter
|
/// <summary>
|
||||||
|
/// The thumbnail for the chapter
|
||||||
|
/// </summary>
|
||||||
|
public class GetMediaMetaDataChapter
|
||||||
{
|
{
|
||||||
|
|
||||||
|
[JsonProperty("id")]
|
||||||
|
public long Id { get; set; } = default!;
|
||||||
|
|
||||||
[JsonProperty("filter")]
|
[JsonProperty("filter")]
|
||||||
public string Filter { get; set; } = default!;
|
public string Filter { get; set; } = default!;
|
||||||
|
|
||||||
[JsonProperty("filterType")]
|
[JsonProperty("index")]
|
||||||
public string FilterType { get; set; } = default!;
|
public long Index { get; set; } = default!;
|
||||||
|
|
||||||
[JsonProperty("key")]
|
[JsonProperty("startTimeOffset")]
|
||||||
public string Key { get; set; } = default!;
|
public long StartTimeOffset { get; set; } = default!;
|
||||||
|
|
||||||
[JsonProperty("title")]
|
[JsonProperty("endTimeOffset")]
|
||||||
public string Title { get; set; } = default!;
|
public long EndTimeOffset { get; set; } = default!;
|
||||||
|
|
||||||
[JsonProperty("type")]
|
[JsonProperty("thumb")]
|
||||||
public string Type { get; set; } = default!;
|
public string Thumb { get; set; } = default!;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -12,13 +12,13 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
using LukeHagar.PlexAPI.SDK.Utils;
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
public class GetLibraryItemsLibraryOperator
|
public class GetMediaMetaDataExtras
|
||||||
{
|
{
|
||||||
|
|
||||||
[JsonProperty("key")]
|
/// <summary>
|
||||||
public string Key { get; set; } = default!;
|
/// The size of the extras.
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("title")]
|
[JsonProperty("size")]
|
||||||
public string Title { get; set; } = default!;
|
public long? Size { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -14,7 +14,11 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
using System;
|
using System;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Indicates if the part has a thumbnail.
|
/// Indicates if the part has a thumbnail.<br/>
|
||||||
|
///
|
||||||
|
/// <remarks>
|
||||||
|
///
|
||||||
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public enum GetMediaMetaDataHasThumbnail
|
public enum GetMediaMetaDataHasThumbnail
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -12,6 +12,10 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
using LukeHagar.PlexAPI.SDK.Models.Requests;
|
using LukeHagar.PlexAPI.SDK.Models.Requests;
|
||||||
using LukeHagar.PlexAPI.SDK.Utils;
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Concurrent;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
|
||||||
public class GetMediaMetaDataImage
|
public class GetMediaMetaDataImage
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -57,7 +57,11 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Has this media been optimized for streaming. NOTE: This can be 0, 1, false or true
|
/// Has this media been optimized for streaming. NOTE: This can be 0, 1, false or true<br/>
|
||||||
|
///
|
||||||
|
/// <remarks>
|
||||||
|
///
|
||||||
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonConverter(typeof(GetMediaMetaDataLibraryOptimizedForStreaming.GetMediaMetaDataLibraryOptimizedForStreamingConverter))]
|
[JsonConverter(typeof(GetMediaMetaDataLibraryOptimizedForStreaming.GetMediaMetaDataLibraryOptimizedForStreamingConverter))]
|
||||||
public class GetMediaMetaDataLibraryOptimizedForStreaming {
|
public class GetMediaMetaDataLibraryOptimizedForStreaming {
|
||||||
|
|||||||
@@ -12,50 +12,68 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
using LukeHagar.PlexAPI.SDK.Utils;
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
using System;
|
using System;
|
||||||
|
using System.Collections.Concurrent;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
|
||||||
public enum GetMediaMetaDataLibraryType
|
[JsonConverter(typeof(OpenEnumConverter))]
|
||||||
|
public class GetMediaMetaDataLibraryType : IEquatable<GetMediaMetaDataLibraryType>
|
||||||
{
|
{
|
||||||
[JsonProperty("coverPoster")]
|
public static readonly GetMediaMetaDataLibraryType CoverPoster = new GetMediaMetaDataLibraryType("coverPoster");
|
||||||
CoverPoster,
|
public static readonly GetMediaMetaDataLibraryType Background = new GetMediaMetaDataLibraryType("background");
|
||||||
[JsonProperty("background")]
|
public static readonly GetMediaMetaDataLibraryType Snapshot = new GetMediaMetaDataLibraryType("snapshot");
|
||||||
Background,
|
public static readonly GetMediaMetaDataLibraryType ClearLogo = new GetMediaMetaDataLibraryType("clearLogo");
|
||||||
[JsonProperty("snapshot")]
|
|
||||||
Snapshot,
|
private static readonly Dictionary <string, GetMediaMetaDataLibraryType> _knownValues =
|
||||||
[JsonProperty("clearLogo")]
|
new Dictionary <string, GetMediaMetaDataLibraryType> ()
|
||||||
ClearLogo,
|
{
|
||||||
|
["coverPoster"] = CoverPoster,
|
||||||
|
["background"] = Background,
|
||||||
|
["snapshot"] = Snapshot,
|
||||||
|
["clearLogo"] = ClearLogo
|
||||||
|
};
|
||||||
|
|
||||||
|
private static readonly ConcurrentDictionary<string, GetMediaMetaDataLibraryType> _values =
|
||||||
|
new ConcurrentDictionary<string, GetMediaMetaDataLibraryType>(_knownValues);
|
||||||
|
|
||||||
|
private GetMediaMetaDataLibraryType(string value)
|
||||||
|
{
|
||||||
|
if (value == null) throw new ArgumentNullException(nameof(value));
|
||||||
|
Value = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static class GetMediaMetaDataLibraryTypeExtension
|
public string Value { get; }
|
||||||
|
|
||||||
|
public static GetMediaMetaDataLibraryType Of(string value)
|
||||||
{
|
{
|
||||||
public static string Value(this GetMediaMetaDataLibraryType value)
|
return _values.GetOrAdd(value, _ => new GetMediaMetaDataLibraryType(value));
|
||||||
{
|
|
||||||
return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString())[0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public static GetMediaMetaDataLibraryType ToEnum(this string value)
|
public static implicit operator GetMediaMetaDataLibraryType(string value) => Of(value);
|
||||||
|
public static implicit operator string(GetMediaMetaDataLibraryType getmediametadatalibrarytype) => getmediametadatalibrarytype.Value;
|
||||||
|
|
||||||
|
public static GetMediaMetaDataLibraryType[] Values()
|
||||||
{
|
{
|
||||||
foreach(var field in typeof(GetMediaMetaDataLibraryType).GetFields())
|
return _values.Values.ToArray();
|
||||||
{
|
|
||||||
var attributes = field.GetCustomAttributes(typeof(JsonPropertyAttribute), false);
|
|
||||||
if (attributes.Length == 0)
|
|
||||||
{
|
|
||||||
continue;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
var attribute = attributes[0] as JsonPropertyAttribute;
|
public override string ToString() => Value.ToString();
|
||||||
if (attribute != null && attribute.PropertyName == value)
|
|
||||||
{
|
|
||||||
var enumVal = field.GetValue(null);
|
|
||||||
|
|
||||||
if (enumVal is GetMediaMetaDataLibraryType)
|
public bool IsKnown()
|
||||||
{
|
{
|
||||||
return (GetMediaMetaDataLibraryType)enumVal;
|
return _knownValues.ContainsKey(Value);
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
throw new Exception($"Unknown value {value} for enum GetMediaMetaDataLibraryType");
|
public override bool Equals(object? obj) => Equals(obj as GetMediaMetaDataLibraryType);
|
||||||
|
|
||||||
|
public bool Equals(GetMediaMetaDataLibraryType? other)
|
||||||
|
{
|
||||||
|
if (ReferenceEquals(this, other)) return true;
|
||||||
|
if (other is null) return false;
|
||||||
|
return string.Equals(Value, other.Value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public override int GetHashCode() => Value.GetHashCode();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -0,0 +1,43 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// 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.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
#nullable enable
|
||||||
|
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
||||||
|
{
|
||||||
|
using LukeHagar.PlexAPI.SDK.Models.Requests;
|
||||||
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The final status of the marker
|
||||||
|
/// </summary>
|
||||||
|
public class GetMediaMetaDataMarker
|
||||||
|
{
|
||||||
|
|
||||||
|
[JsonProperty("id")]
|
||||||
|
public long Id { get; set; } = default!;
|
||||||
|
|
||||||
|
[JsonProperty("type")]
|
||||||
|
public string Type { get; set; } = default!;
|
||||||
|
|
||||||
|
[JsonProperty("startTimeOffset")]
|
||||||
|
public long StartTimeOffset { get; set; } = default!;
|
||||||
|
|
||||||
|
[JsonProperty("endTimeOffset")]
|
||||||
|
public long EndTimeOffset { get; set; } = default!;
|
||||||
|
|
||||||
|
[JsonProperty("final")]
|
||||||
|
public bool? Final { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Attributes associated with the marker.
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("Attributes")]
|
||||||
|
public GetMediaMetaDataAttributes? Attributes { get; set; }
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -82,7 +82,7 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
public string? VideoResolution { get; set; }
|
public string? VideoResolution { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// File container type.
|
/// Container format of the media.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonProperty("container")]
|
[JsonProperty("container")]
|
||||||
public string? Container { get; set; }
|
public string? Container { get; set; }
|
||||||
@@ -121,12 +121,17 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
[JsonProperty("optimizedForStreaming")]
|
[JsonProperty("optimizedForStreaming")]
|
||||||
public GetMediaMetaDataOptimizedForStreaming? OptimizedForStreaming { get; set; }
|
public GetMediaMetaDataOptimizedForStreaming? OptimizedForStreaming { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Indicates whether the media has 64-bit offsets.<br/>
|
||||||
|
///
|
||||||
|
/// <remarks>
|
||||||
|
/// This is relevant for media files that may require larger offsets than what 32-bit integers can provide.<br/>
|
||||||
|
///
|
||||||
|
/// </remarks>
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("has64bitOffsets")]
|
[JsonProperty("has64bitOffsets")]
|
||||||
public bool? Has64bitOffsets { get; set; }
|
public bool? Has64bitOffsets { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// An array of parts for this media item.
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("Part")]
|
[JsonProperty("Part")]
|
||||||
public List<GetMediaMetaDataPart>? Part { get; set; }
|
public List<GetMediaMetaDataPart>? Part { get; set; }
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -39,13 +39,13 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
/// The unique identifier for the library section.
|
/// The unique identifier for the library section.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonProperty("librarySectionID")]
|
[JsonProperty("librarySectionID")]
|
||||||
public long LibrarySectionID { get; set; } = default!;
|
public long? LibrarySectionID { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The title of the library section.
|
/// The title of the library section.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonProperty("librarySectionTitle")]
|
[JsonProperty("librarySectionTitle")]
|
||||||
public string LibrarySectionTitle { get; set; } = default!;
|
public string? LibrarySectionTitle { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The universally unique identifier for the library section.
|
/// The universally unique identifier for the library section.
|
||||||
|
|||||||
@@ -13,7 +13,10 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
using LukeHagar.PlexAPI.SDK.Utils;
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
using NodaTime;
|
using NodaTime;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Concurrent;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Unknown<br/>
|
/// Unknown<br/>
|
||||||
@@ -164,7 +167,7 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
/// The original release date of the media item.
|
/// The original release date of the media item.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonProperty("originallyAvailableAt")]
|
[JsonProperty("originallyAvailableAt")]
|
||||||
public LocalDate OriginallyAvailableAt { get; set; } = default!;
|
public LocalDate? OriginallyAvailableAt { get; set; }
|
||||||
|
|
||||||
[JsonProperty("addedAt")]
|
[JsonProperty("addedAt")]
|
||||||
public long AddedAt { get; set; } = default!;
|
public long AddedAt { get; set; } = default!;
|
||||||
@@ -353,19 +356,19 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
/// The identifier for the library section.
|
/// The identifier for the library section.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonProperty("librarySectionID")]
|
[JsonProperty("librarySectionID")]
|
||||||
public long LibrarySectionID { get; set; } = default!;
|
public long? LibrarySectionID { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The title of the library section.
|
/// The title of the library section.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonProperty("librarySectionTitle")]
|
[JsonProperty("librarySectionTitle")]
|
||||||
public string LibrarySectionTitle { get; set; } = default!;
|
public string? LibrarySectionTitle { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The key corresponding to the library section.
|
/// The key corresponding to the library section.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonProperty("librarySectionKey")]
|
[JsonProperty("librarySectionKey")]
|
||||||
public string LibrarySectionKey { get; set; } = default!;
|
public string? LibrarySectionKey { get; set; }
|
||||||
|
|
||||||
[JsonProperty("Guid")]
|
[JsonProperty("Guid")]
|
||||||
public List<GetMediaMetaDataGuids>? Guids { get; set; }
|
public List<GetMediaMetaDataGuids>? Guids { get; set; }
|
||||||
@@ -392,7 +395,7 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
public List<GetMediaMetaDataRole>? Role { get; set; }
|
public List<GetMediaMetaDataRole>? Role { get; set; }
|
||||||
|
|
||||||
[JsonProperty("Rating")]
|
[JsonProperty("Rating")]
|
||||||
public List<Ratings>? Ratings { get; set; }
|
public List<GetMediaMetaDataRatings>? Ratings { get; set; }
|
||||||
|
|
||||||
[JsonProperty("Similar")]
|
[JsonProperty("Similar")]
|
||||||
public List<GetMediaMetaDataSimilar>? Similar { get; set; }
|
public List<GetMediaMetaDataSimilar>? Similar { get; set; }
|
||||||
@@ -401,12 +404,12 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
public List<GetMediaMetaDataLocation>? Location { get; set; }
|
public List<GetMediaMetaDataLocation>? Location { get; set; }
|
||||||
|
|
||||||
[JsonProperty("Chapter")]
|
[JsonProperty("Chapter")]
|
||||||
public List<Chapter>? Chapter { get; set; }
|
public List<GetMediaMetaDataChapter>? Chapter { get; set; }
|
||||||
|
|
||||||
[JsonProperty("Marker")]
|
[JsonProperty("Marker")]
|
||||||
public List<Marker>? Marker { get; set; }
|
public List<GetMediaMetaDataMarker>? Marker { get; set; }
|
||||||
|
|
||||||
[JsonProperty("Extras")]
|
[JsonProperty("Extras")]
|
||||||
public Extras? Extras { get; set; }
|
public GetMediaMetaDataExtras? Extras { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -40,7 +40,7 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
/// Key to access this part.
|
/// Key to access this part.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonProperty("key")]
|
[JsonProperty("key")]
|
||||||
public string Key { get; set; } = default!;
|
public string? Key { get; set; }
|
||||||
|
|
||||||
[JsonProperty("indexes")]
|
[JsonProperty("indexes")]
|
||||||
public string? Indexes { get; set; }
|
public string? Indexes { get; set; }
|
||||||
@@ -55,13 +55,13 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
/// File path for the part.
|
/// File path for the part.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonProperty("file")]
|
[JsonProperty("file")]
|
||||||
public string File { get; set; } = default!;
|
public string? File { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// File size in bytes.
|
/// File size in bytes.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonProperty("size")]
|
[JsonProperty("size")]
|
||||||
public long Size { get; set; } = default!;
|
public long? Size { get; set; }
|
||||||
|
|
||||||
[JsonProperty("packetLength")]
|
[JsonProperty("packetLength")]
|
||||||
public int? PacketLength { get; set; }
|
public int? PacketLength { get; set; }
|
||||||
@@ -88,7 +88,11 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
public bool? Has64bitOffsets { get; set; }
|
public bool? Has64bitOffsets { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Has this media been optimized for streaming. NOTE: This can be 0, 1, false or true
|
/// Has this media been optimized for streaming. NOTE: This can be 0, 1, false or true<br/>
|
||||||
|
///
|
||||||
|
/// <remarks>
|
||||||
|
///
|
||||||
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonProperty("optimizedForStreaming")]
|
[JsonProperty("optimizedForStreaming")]
|
||||||
public GetMediaMetaDataLibraryOptimizedForStreaming? OptimizedForStreaming { get; set; }
|
public GetMediaMetaDataLibraryOptimizedForStreaming? OptimizedForStreaming { get; set; }
|
||||||
@@ -96,9 +100,6 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
[JsonProperty("hasThumbnail")]
|
[JsonProperty("hasThumbnail")]
|
||||||
public GetMediaMetaDataHasThumbnail? HasThumbnail { get; set; } = LukeHagar.PlexAPI.SDK.Models.Requests.GetMediaMetaDataHasThumbnail.False;
|
public GetMediaMetaDataHasThumbnail? HasThumbnail { get; set; } = LukeHagar.PlexAPI.SDK.Models.Requests.GetMediaMetaDataHasThumbnail.False;
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// An array of streams for this part.
|
|
||||||
/// </summary>
|
|
||||||
[JsonProperty("Stream")]
|
[JsonProperty("Stream")]
|
||||||
public List<GetMediaMetaDataStream>? Stream { get; set; }
|
public List<GetMediaMetaDataStream>? Stream { get; set; }
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -12,17 +12,17 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
using LukeHagar.PlexAPI.SDK.Utils;
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
public class MetaDataRating
|
public class GetMediaMetaDataRatings
|
||||||
{
|
{
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// A URI or path to the rating image.
|
/// The image or reference for the rating.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonProperty("image")]
|
[JsonProperty("image")]
|
||||||
public string Image { get; set; } = default!;
|
public string Image { get; set; } = default!;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The value of the rating.
|
/// The rating value.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonProperty("value")]
|
[JsonProperty("value")]
|
||||||
public float Value { get; set; } = default!;
|
public float Value { get; set; } = default!;
|
||||||
@@ -9,7 +9,6 @@
|
|||||||
#nullable enable
|
#nullable enable
|
||||||
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
||||||
{
|
{
|
||||||
using LukeHagar.PlexAPI.SDK.Models.Requests;
|
|
||||||
using LukeHagar.PlexAPI.SDK.Utils;
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
@@ -26,14 +25,14 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
/// Stream type:<br/>
|
/// Stream type:<br/>
|
||||||
///
|
///
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// - 1 = video<br/>
|
/// - VIDEO = 1<br/>
|
||||||
/// - 2 = audio<br/>
|
/// - AUDIO = 2<br/>
|
||||||
/// - 3 = subtitle<br/>
|
/// - SUBTITLE = 3<br/>
|
||||||
///
|
///
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonProperty("streamType")]
|
[JsonProperty("streamType")]
|
||||||
public GetMediaMetaDataStreamType StreamType { get; set; } = default!;
|
public long StreamType { get; } = 1;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Format of the stream (e.g., srt).
|
/// Format of the stream (e.g., srt).
|
||||||
@@ -51,7 +50,7 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
/// Codec used by the stream.
|
/// Codec used by the stream.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonProperty("codec")]
|
[JsonProperty("codec")]
|
||||||
public string Codec { get; set; } = default!;
|
public string? Codec { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Index of the stream.
|
/// Index of the stream.
|
||||||
@@ -255,13 +254,13 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
/// Display title for the stream.
|
/// Display title for the stream.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonProperty("displayTitle")]
|
[JsonProperty("displayTitle")]
|
||||||
public string DisplayTitle { get; set; } = default!;
|
public string? DisplayTitle { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Extended display title for the stream.
|
/// Extended display title for the stream.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonProperty("extendedDisplayTitle")]
|
[JsonProperty("extendedDisplayTitle")]
|
||||||
public string ExtendedDisplayTitle { get; set; } = default!;
|
public string? ExtendedDisplayTitle { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Indicates if this stream is selected (applicable for audio streams).
|
/// Indicates if this stream is selected (applicable for audio streams).
|
||||||
|
|||||||
@@ -12,6 +12,9 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
using LukeHagar.PlexAPI.SDK.Utils;
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
using System;
|
using System;
|
||||||
|
using System.Collections.Concurrent;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The type of media content in the Plex library. This can represent videos, music, or photos.<br/>
|
/// The type of media content in the Plex library. This can represent videos, music, or photos.<br/>
|
||||||
@@ -20,61 +23,76 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
///
|
///
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public enum GetMediaMetaDataType
|
[JsonConverter(typeof(OpenEnumConverter))]
|
||||||
|
public class GetMediaMetaDataType : IEquatable<GetMediaMetaDataType>
|
||||||
{
|
{
|
||||||
[JsonProperty("movie")]
|
public static readonly GetMediaMetaDataType Movie = new GetMediaMetaDataType("movie");
|
||||||
Movie,
|
public static readonly GetMediaMetaDataType TvShow = new GetMediaMetaDataType("show");
|
||||||
[JsonProperty("show")]
|
public static readonly GetMediaMetaDataType Season = new GetMediaMetaDataType("season");
|
||||||
TvShow,
|
public static readonly GetMediaMetaDataType Episode = new GetMediaMetaDataType("episode");
|
||||||
[JsonProperty("season")]
|
public static readonly GetMediaMetaDataType Artist = new GetMediaMetaDataType("artist");
|
||||||
Season,
|
public static readonly GetMediaMetaDataType Album = new GetMediaMetaDataType("album");
|
||||||
[JsonProperty("episode")]
|
public static readonly GetMediaMetaDataType Track = new GetMediaMetaDataType("track");
|
||||||
Episode,
|
public static readonly GetMediaMetaDataType PhotoAlbum = new GetMediaMetaDataType("photoalbum");
|
||||||
[JsonProperty("artist")]
|
public static readonly GetMediaMetaDataType Photo = new GetMediaMetaDataType("photo");
|
||||||
Artist,
|
public static readonly GetMediaMetaDataType Collection = new GetMediaMetaDataType("collection");
|
||||||
[JsonProperty("album")]
|
|
||||||
Album,
|
private static readonly Dictionary <string, GetMediaMetaDataType> _knownValues =
|
||||||
[JsonProperty("track")]
|
new Dictionary <string, GetMediaMetaDataType> ()
|
||||||
Track,
|
{
|
||||||
[JsonProperty("photoalbum")]
|
["movie"] = Movie,
|
||||||
PhotoAlbum,
|
["show"] = TvShow,
|
||||||
[JsonProperty("photo")]
|
["season"] = Season,
|
||||||
Photo,
|
["episode"] = Episode,
|
||||||
[JsonProperty("collection")]
|
["artist"] = Artist,
|
||||||
Collection,
|
["album"] = Album,
|
||||||
|
["track"] = Track,
|
||||||
|
["photoalbum"] = PhotoAlbum,
|
||||||
|
["photo"] = Photo,
|
||||||
|
["collection"] = Collection
|
||||||
|
};
|
||||||
|
|
||||||
|
private static readonly ConcurrentDictionary<string, GetMediaMetaDataType> _values =
|
||||||
|
new ConcurrentDictionary<string, GetMediaMetaDataType>(_knownValues);
|
||||||
|
|
||||||
|
private GetMediaMetaDataType(string value)
|
||||||
|
{
|
||||||
|
if (value == null) throw new ArgumentNullException(nameof(value));
|
||||||
|
Value = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static class GetMediaMetaDataTypeExtension
|
public string Value { get; }
|
||||||
|
|
||||||
|
public static GetMediaMetaDataType Of(string value)
|
||||||
{
|
{
|
||||||
public static string Value(this GetMediaMetaDataType value)
|
return _values.GetOrAdd(value, _ => new GetMediaMetaDataType(value));
|
||||||
{
|
|
||||||
return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString())[0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public static GetMediaMetaDataType ToEnum(this string value)
|
public static implicit operator GetMediaMetaDataType(string value) => Of(value);
|
||||||
|
public static implicit operator string(GetMediaMetaDataType getmediametadatatype) => getmediametadatatype.Value;
|
||||||
|
|
||||||
|
public static GetMediaMetaDataType[] Values()
|
||||||
{
|
{
|
||||||
foreach(var field in typeof(GetMediaMetaDataType).GetFields())
|
return _values.Values.ToArray();
|
||||||
{
|
|
||||||
var attributes = field.GetCustomAttributes(typeof(JsonPropertyAttribute), false);
|
|
||||||
if (attributes.Length == 0)
|
|
||||||
{
|
|
||||||
continue;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
var attribute = attributes[0] as JsonPropertyAttribute;
|
public override string ToString() => Value.ToString();
|
||||||
if (attribute != null && attribute.PropertyName == value)
|
|
||||||
{
|
|
||||||
var enumVal = field.GetValue(null);
|
|
||||||
|
|
||||||
if (enumVal is GetMediaMetaDataType)
|
public bool IsKnown()
|
||||||
{
|
{
|
||||||
return (GetMediaMetaDataType)enumVal;
|
return _knownValues.ContainsKey(Value);
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
throw new Exception($"Unknown value {value} for enum GetMediaMetaDataType");
|
public override bool Equals(object? obj) => Equals(obj as GetMediaMetaDataType);
|
||||||
|
|
||||||
|
public bool Equals(GetMediaMetaDataType? other)
|
||||||
|
{
|
||||||
|
if (ReferenceEquals(this, other)) return true;
|
||||||
|
if (other is null) return false;
|
||||||
|
return string.Equals(Value, other.Value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public override int GetHashCode() => Value.GetHashCode();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -10,6 +10,11 @@
|
|||||||
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
||||||
{
|
{
|
||||||
using LukeHagar.PlexAPI.SDK.Utils;
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Concurrent;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The type of media to retrieve or filter by.<br/>
|
/// The type of media to retrieve or filter by.<br/>
|
||||||
@@ -23,17 +28,73 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
///
|
///
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public enum GetPlaylistContentsQueryParamType
|
[JsonConverter(typeof(OpenEnumConverter))]
|
||||||
|
public class GetPlaylistContentsQueryParamType : IEquatable<GetPlaylistContentsQueryParamType>
|
||||||
{
|
{
|
||||||
Movie = 1,
|
public static readonly GetPlaylistContentsQueryParamType Movie = new GetPlaylistContentsQueryParamType(1);
|
||||||
TvShow = 2,
|
public static readonly GetPlaylistContentsQueryParamType TvShow = new GetPlaylistContentsQueryParamType(2);
|
||||||
Season = 3,
|
public static readonly GetPlaylistContentsQueryParamType Season = new GetPlaylistContentsQueryParamType(3);
|
||||||
Episode = 4,
|
public static readonly GetPlaylistContentsQueryParamType Episode = new GetPlaylistContentsQueryParamType(4);
|
||||||
Artist = 5,
|
public static readonly GetPlaylistContentsQueryParamType Artist = new GetPlaylistContentsQueryParamType(5);
|
||||||
Album = 6,
|
public static readonly GetPlaylistContentsQueryParamType Album = new GetPlaylistContentsQueryParamType(6);
|
||||||
Track = 7,
|
public static readonly GetPlaylistContentsQueryParamType Track = new GetPlaylistContentsQueryParamType(7);
|
||||||
PhotoAlbum = 8,
|
public static readonly GetPlaylistContentsQueryParamType PhotoAlbum = new GetPlaylistContentsQueryParamType(8);
|
||||||
Photo = 9,
|
public static readonly GetPlaylistContentsQueryParamType Photo = new GetPlaylistContentsQueryParamType(9);
|
||||||
|
|
||||||
|
private static readonly Dictionary <long, GetPlaylistContentsQueryParamType> _knownValues =
|
||||||
|
new Dictionary <long, GetPlaylistContentsQueryParamType> ()
|
||||||
|
{
|
||||||
|
[1] = Movie,
|
||||||
|
[2] = TvShow,
|
||||||
|
[3] = Season,
|
||||||
|
[4] = Episode,
|
||||||
|
[5] = Artist,
|
||||||
|
[6] = Album,
|
||||||
|
[7] = Track,
|
||||||
|
[8] = PhotoAlbum,
|
||||||
|
[9] = Photo
|
||||||
|
};
|
||||||
|
|
||||||
|
private static readonly ConcurrentDictionary<long, GetPlaylistContentsQueryParamType> _values =
|
||||||
|
new ConcurrentDictionary<long, GetPlaylistContentsQueryParamType>(_knownValues);
|
||||||
|
|
||||||
|
private GetPlaylistContentsQueryParamType(long value)
|
||||||
|
{
|
||||||
|
Value = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
public long Value { get; }
|
||||||
|
|
||||||
|
public static GetPlaylistContentsQueryParamType Of(long value)
|
||||||
|
{
|
||||||
|
return _values.GetOrAdd(value, _ => new GetPlaylistContentsQueryParamType(value));
|
||||||
|
}
|
||||||
|
|
||||||
|
public static implicit operator GetPlaylistContentsQueryParamType(long value) => Of(value);
|
||||||
|
public static implicit operator long(GetPlaylistContentsQueryParamType getplaylistcontentsqueryparamtype) => getplaylistcontentsqueryparamtype.Value;
|
||||||
|
|
||||||
|
public static GetPlaylistContentsQueryParamType[] Values()
|
||||||
|
{
|
||||||
|
return _values.Values.ToArray();
|
||||||
|
}
|
||||||
|
|
||||||
|
public override string ToString() => Value.ToString();
|
||||||
|
|
||||||
|
public bool IsKnown()
|
||||||
|
{
|
||||||
|
return _knownValues.ContainsKey(Value);
|
||||||
|
}
|
||||||
|
|
||||||
|
public override bool Equals(object? obj) => Equals(obj as GetPlaylistContentsQueryParamType);
|
||||||
|
|
||||||
|
public bool Equals(GetPlaylistContentsQueryParamType? other)
|
||||||
|
{
|
||||||
|
if (ReferenceEquals(this, other)) return true;
|
||||||
|
if (other is null) return false;
|
||||||
|
return string.Equals(Value, other.Value);
|
||||||
|
}
|
||||||
|
|
||||||
|
public override int GetHashCode() => Value.GetHashCode();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -11,6 +11,11 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
{
|
{
|
||||||
using LukeHagar.PlexAPI.SDK.Models.Requests;
|
using LukeHagar.PlexAPI.SDK.Models.Requests;
|
||||||
using LukeHagar.PlexAPI.SDK.Utils;
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Concurrent;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
|
||||||
public class GetPlaylistContentsRequest
|
public class GetPlaylistContentsRequest
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -11,6 +11,11 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
{
|
{
|
||||||
using LukeHagar.PlexAPI.SDK.Models.Requests;
|
using LukeHagar.PlexAPI.SDK.Models.Requests;
|
||||||
using LukeHagar.PlexAPI.SDK.Utils;
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Concurrent;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
|
||||||
public class GetPlaylistsRequest
|
public class GetPlaylistsRequest
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -12,50 +12,68 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
using LukeHagar.PlexAPI.SDK.Utils;
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
using System;
|
using System;
|
||||||
|
using System.Collections.Concurrent;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
|
||||||
public enum GetRecentlyAddedHubsResponseType
|
[JsonConverter(typeof(OpenEnumConverter))]
|
||||||
|
public class GetRecentlyAddedHubsResponseType : IEquatable<GetRecentlyAddedHubsResponseType>
|
||||||
{
|
{
|
||||||
[JsonProperty("coverPoster")]
|
public static readonly GetRecentlyAddedHubsResponseType CoverPoster = new GetRecentlyAddedHubsResponseType("coverPoster");
|
||||||
CoverPoster,
|
public static readonly GetRecentlyAddedHubsResponseType Background = new GetRecentlyAddedHubsResponseType("background");
|
||||||
[JsonProperty("background")]
|
public static readonly GetRecentlyAddedHubsResponseType Snapshot = new GetRecentlyAddedHubsResponseType("snapshot");
|
||||||
Background,
|
public static readonly GetRecentlyAddedHubsResponseType ClearLogo = new GetRecentlyAddedHubsResponseType("clearLogo");
|
||||||
[JsonProperty("snapshot")]
|
|
||||||
Snapshot,
|
private static readonly Dictionary <string, GetRecentlyAddedHubsResponseType> _knownValues =
|
||||||
[JsonProperty("clearLogo")]
|
new Dictionary <string, GetRecentlyAddedHubsResponseType> ()
|
||||||
ClearLogo,
|
{
|
||||||
|
["coverPoster"] = CoverPoster,
|
||||||
|
["background"] = Background,
|
||||||
|
["snapshot"] = Snapshot,
|
||||||
|
["clearLogo"] = ClearLogo
|
||||||
|
};
|
||||||
|
|
||||||
|
private static readonly ConcurrentDictionary<string, GetRecentlyAddedHubsResponseType> _values =
|
||||||
|
new ConcurrentDictionary<string, GetRecentlyAddedHubsResponseType>(_knownValues);
|
||||||
|
|
||||||
|
private GetRecentlyAddedHubsResponseType(string value)
|
||||||
|
{
|
||||||
|
if (value == null) throw new ArgumentNullException(nameof(value));
|
||||||
|
Value = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static class GetRecentlyAddedHubsResponseTypeExtension
|
public string Value { get; }
|
||||||
|
|
||||||
|
public static GetRecentlyAddedHubsResponseType Of(string value)
|
||||||
{
|
{
|
||||||
public static string Value(this GetRecentlyAddedHubsResponseType value)
|
return _values.GetOrAdd(value, _ => new GetRecentlyAddedHubsResponseType(value));
|
||||||
{
|
|
||||||
return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString())[0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public static GetRecentlyAddedHubsResponseType ToEnum(this string value)
|
public static implicit operator GetRecentlyAddedHubsResponseType(string value) => Of(value);
|
||||||
|
public static implicit operator string(GetRecentlyAddedHubsResponseType getrecentlyaddedhubsresponsetype) => getrecentlyaddedhubsresponsetype.Value;
|
||||||
|
|
||||||
|
public static GetRecentlyAddedHubsResponseType[] Values()
|
||||||
{
|
{
|
||||||
foreach(var field in typeof(GetRecentlyAddedHubsResponseType).GetFields())
|
return _values.Values.ToArray();
|
||||||
{
|
|
||||||
var attributes = field.GetCustomAttributes(typeof(JsonPropertyAttribute), false);
|
|
||||||
if (attributes.Length == 0)
|
|
||||||
{
|
|
||||||
continue;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
var attribute = attributes[0] as JsonPropertyAttribute;
|
public override string ToString() => Value.ToString();
|
||||||
if (attribute != null && attribute.PropertyName == value)
|
|
||||||
{
|
|
||||||
var enumVal = field.GetValue(null);
|
|
||||||
|
|
||||||
if (enumVal is GetRecentlyAddedHubsResponseType)
|
public bool IsKnown()
|
||||||
{
|
{
|
||||||
return (GetRecentlyAddedHubsResponseType)enumVal;
|
return _knownValues.ContainsKey(Value);
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
throw new Exception($"Unknown value {value} for enum GetRecentlyAddedHubsResponseType");
|
public override bool Equals(object? obj) => Equals(obj as GetRecentlyAddedHubsResponseType);
|
||||||
|
|
||||||
|
public bool Equals(GetRecentlyAddedHubsResponseType? other)
|
||||||
|
{
|
||||||
|
if (ReferenceEquals(this, other)) return true;
|
||||||
|
if (other is null) return false;
|
||||||
|
return string.Equals(Value, other.Value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public override int GetHashCode() => Value.GetHashCode();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -12,6 +12,9 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
using LukeHagar.PlexAPI.SDK.Utils;
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
using System;
|
using System;
|
||||||
|
using System.Collections.Concurrent;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The type of media content in the Plex library. This can represent videos, music, or photos.<br/>
|
/// The type of media content in the Plex library. This can represent videos, music, or photos.<br/>
|
||||||
@@ -20,61 +23,76 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
///
|
///
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public enum GetRecentlyAddedHubsType
|
[JsonConverter(typeof(OpenEnumConverter))]
|
||||||
|
public class GetRecentlyAddedHubsType : IEquatable<GetRecentlyAddedHubsType>
|
||||||
{
|
{
|
||||||
[JsonProperty("movie")]
|
public static readonly GetRecentlyAddedHubsType Movie = new GetRecentlyAddedHubsType("movie");
|
||||||
Movie,
|
public static readonly GetRecentlyAddedHubsType TvShow = new GetRecentlyAddedHubsType("show");
|
||||||
[JsonProperty("show")]
|
public static readonly GetRecentlyAddedHubsType Season = new GetRecentlyAddedHubsType("season");
|
||||||
TvShow,
|
public static readonly GetRecentlyAddedHubsType Episode = new GetRecentlyAddedHubsType("episode");
|
||||||
[JsonProperty("season")]
|
public static readonly GetRecentlyAddedHubsType Artist = new GetRecentlyAddedHubsType("artist");
|
||||||
Season,
|
public static readonly GetRecentlyAddedHubsType Album = new GetRecentlyAddedHubsType("album");
|
||||||
[JsonProperty("episode")]
|
public static readonly GetRecentlyAddedHubsType Track = new GetRecentlyAddedHubsType("track");
|
||||||
Episode,
|
public static readonly GetRecentlyAddedHubsType PhotoAlbum = new GetRecentlyAddedHubsType("photoalbum");
|
||||||
[JsonProperty("artist")]
|
public static readonly GetRecentlyAddedHubsType Photo = new GetRecentlyAddedHubsType("photo");
|
||||||
Artist,
|
public static readonly GetRecentlyAddedHubsType Collection = new GetRecentlyAddedHubsType("collection");
|
||||||
[JsonProperty("album")]
|
|
||||||
Album,
|
private static readonly Dictionary <string, GetRecentlyAddedHubsType> _knownValues =
|
||||||
[JsonProperty("track")]
|
new Dictionary <string, GetRecentlyAddedHubsType> ()
|
||||||
Track,
|
{
|
||||||
[JsonProperty("photoalbum")]
|
["movie"] = Movie,
|
||||||
PhotoAlbum,
|
["show"] = TvShow,
|
||||||
[JsonProperty("photo")]
|
["season"] = Season,
|
||||||
Photo,
|
["episode"] = Episode,
|
||||||
[JsonProperty("collection")]
|
["artist"] = Artist,
|
||||||
Collection,
|
["album"] = Album,
|
||||||
|
["track"] = Track,
|
||||||
|
["photoalbum"] = PhotoAlbum,
|
||||||
|
["photo"] = Photo,
|
||||||
|
["collection"] = Collection
|
||||||
|
};
|
||||||
|
|
||||||
|
private static readonly ConcurrentDictionary<string, GetRecentlyAddedHubsType> _values =
|
||||||
|
new ConcurrentDictionary<string, GetRecentlyAddedHubsType>(_knownValues);
|
||||||
|
|
||||||
|
private GetRecentlyAddedHubsType(string value)
|
||||||
|
{
|
||||||
|
if (value == null) throw new ArgumentNullException(nameof(value));
|
||||||
|
Value = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static class GetRecentlyAddedHubsTypeExtension
|
public string Value { get; }
|
||||||
|
|
||||||
|
public static GetRecentlyAddedHubsType Of(string value)
|
||||||
{
|
{
|
||||||
public static string Value(this GetRecentlyAddedHubsType value)
|
return _values.GetOrAdd(value, _ => new GetRecentlyAddedHubsType(value));
|
||||||
{
|
|
||||||
return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString())[0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public static GetRecentlyAddedHubsType ToEnum(this string value)
|
public static implicit operator GetRecentlyAddedHubsType(string value) => Of(value);
|
||||||
|
public static implicit operator string(GetRecentlyAddedHubsType getrecentlyaddedhubstype) => getrecentlyaddedhubstype.Value;
|
||||||
|
|
||||||
|
public static GetRecentlyAddedHubsType[] Values()
|
||||||
{
|
{
|
||||||
foreach(var field in typeof(GetRecentlyAddedHubsType).GetFields())
|
return _values.Values.ToArray();
|
||||||
{
|
|
||||||
var attributes = field.GetCustomAttributes(typeof(JsonPropertyAttribute), false);
|
|
||||||
if (attributes.Length == 0)
|
|
||||||
{
|
|
||||||
continue;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
var attribute = attributes[0] as JsonPropertyAttribute;
|
public override string ToString() => Value.ToString();
|
||||||
if (attribute != null && attribute.PropertyName == value)
|
|
||||||
{
|
|
||||||
var enumVal = field.GetValue(null);
|
|
||||||
|
|
||||||
if (enumVal is GetRecentlyAddedHubsType)
|
public bool IsKnown()
|
||||||
{
|
{
|
||||||
return (GetRecentlyAddedHubsType)enumVal;
|
return _knownValues.ContainsKey(Value);
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
throw new Exception($"Unknown value {value} for enum GetRecentlyAddedHubsType");
|
public override bool Equals(object? obj) => Equals(obj as GetRecentlyAddedHubsType);
|
||||||
|
|
||||||
|
public bool Equals(GetRecentlyAddedHubsType? other)
|
||||||
|
{
|
||||||
|
if (ReferenceEquals(this, other)) return true;
|
||||||
|
if (other is null) return false;
|
||||||
|
return string.Equals(Value, other.Value);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public override int GetHashCode() => Value.GetHashCode();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -12,6 +12,10 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
using LukeHagar.PlexAPI.SDK.Models.Requests;
|
using LukeHagar.PlexAPI.SDK.Models.Requests;
|
||||||
using LukeHagar.PlexAPI.SDK.Utils;
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Concurrent;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
|
||||||
public class GetRecentlyAddedImage
|
public class GetRecentlyAddedImage
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -11,7 +11,11 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
{
|
{
|
||||||
using LukeHagar.PlexAPI.SDK.Models.Requests;
|
using LukeHagar.PlexAPI.SDK.Models.Requests;
|
||||||
using LukeHagar.PlexAPI.SDK.Utils;
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Concurrent;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
|
||||||
public class GetRecentlyAddedLibraryRequest
|
public class GetRecentlyAddedLibraryRequest
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -13,7 +13,10 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
using LukeHagar.PlexAPI.SDK.Utils;
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
using NodaTime;
|
using NodaTime;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Concurrent;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Unknown<br/>
|
/// Unknown<br/>
|
||||||
@@ -170,19 +173,19 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
/// The identifier for the library section.
|
/// The identifier for the library section.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonProperty("librarySectionID")]
|
[JsonProperty("librarySectionID")]
|
||||||
public long LibrarySectionID { get; set; } = default!;
|
public long? LibrarySectionID { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The key corresponding to the library section.
|
/// The key corresponding to the library section.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonProperty("librarySectionKey")]
|
[JsonProperty("librarySectionKey")]
|
||||||
public string LibrarySectionKey { get; set; } = default!;
|
public string? LibrarySectionKey { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The title of the library section.
|
/// The title of the library section.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonProperty("librarySectionTitle")]
|
[JsonProperty("librarySectionTitle")]
|
||||||
public string LibrarySectionTitle { get; set; } = default!;
|
public string? LibrarySectionTitle { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The original title of the media item (if different).
|
/// The original title of the media item (if different).
|
||||||
@@ -194,7 +197,7 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
/// The original release date of the media item.
|
/// The original release date of the media item.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonProperty("originallyAvailableAt")]
|
[JsonProperty("originallyAvailableAt")]
|
||||||
public LocalDate OriginallyAvailableAt { get; set; } = default!;
|
public LocalDate? OriginallyAvailableAt { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The GUID of the parent media item.
|
/// The GUID of the parent media item.
|
||||||
|
|||||||
@@ -11,6 +11,11 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
{
|
{
|
||||||
using LukeHagar.PlexAPI.SDK.Models.Requests;
|
using LukeHagar.PlexAPI.SDK.Models.Requests;
|
||||||
using LukeHagar.PlexAPI.SDK.Utils;
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Concurrent;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
|
||||||
public class GetRecentlyAddedRequest
|
public class GetRecentlyAddedRequest
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -15,7 +15,21 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
public class GetSearchAllLibrariesCountry
|
public class GetSearchAllLibrariesCountry
|
||||||
{
|
{
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The unique identifier for the country.<br/>
|
||||||
|
///
|
||||||
|
/// <remarks>
|
||||||
|
/// NOTE: This is different for each Plex server and is not globally unique.<br/>
|
||||||
|
///
|
||||||
|
/// </remarks>
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("id")]
|
||||||
|
public int Id { get; set; } = default!;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The country of origin of this media item
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("tag")]
|
[JsonProperty("tag")]
|
||||||
public string? Tag { get; set; }
|
public string Tag { get; set; } = default!;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -15,7 +15,22 @@ namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|||||||
public class GetSearchAllLibrariesDirector
|
public class GetSearchAllLibrariesDirector
|
||||||
{
|
{
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Unique identifier for the director.
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("id")]
|
||||||
|
public int Id { get; set; } = default!;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The role of Director
|
||||||
|
/// </summary>
|
||||||
[JsonProperty("tag")]
|
[JsonProperty("tag")]
|
||||||
public string? Tag { get; set; }
|
public string Tag { get; set; } = default!;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The absolute URL of the thumbnail image for the director.
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("thumb")]
|
||||||
|
public string? Thumb { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -0,0 +1,87 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// 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.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
#nullable enable
|
||||||
|
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
||||||
|
{
|
||||||
|
using LukeHagar.PlexAPI.SDK.Utils;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
|
||||||
|
public class GetSearchAllLibrariesDirectory
|
||||||
|
{
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The unique identifier path for the search result item.
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("key")]
|
||||||
|
public string Key { get; set; } = default!;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The identifier for the library section.
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("librarySectionID")]
|
||||||
|
public long LibrarySectionID { get; set; } = default!;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The key corresponding to the library section.
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("librarySectionKey")]
|
||||||
|
public string LibrarySectionKey { get; set; } = default!;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The title of the library section.
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("librarySectionTitle")]
|
||||||
|
public string LibrarySectionTitle { get; set; } = default!;
|
||||||
|
|
||||||
|
[JsonProperty("librarySectionType")]
|
||||||
|
public long LibrarySectionType { get; } = 1;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The type of the directory.
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("type")]
|
||||||
|
public string Type { get; set; } = default!;
|
||||||
|
|
||||||
|
[JsonProperty("id")]
|
||||||
|
public long Id { get; set; } = default!;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The filter string used to query this specific item in the library.
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("filter")]
|
||||||
|
public string? Filter { get; set; }
|
||||||
|
|
||||||
|
[JsonProperty("tag")]
|
||||||
|
public string Tag { get; set; } = default!;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The type of tag associated with this search result (e.g., Director, Actor).
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("tagType")]
|
||||||
|
public long TagType { get; } = 4;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The unique identifier for the tag associated with this search result.
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("tagKey")]
|
||||||
|
public string? TagKey { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The URL to the thumbnail image associated with this search result.
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("thumb")]
|
||||||
|
public string? Thumb { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The number of items associated with this search result.
|
||||||
|
/// </summary>
|
||||||
|
[JsonProperty("count")]
|
||||||
|
public long? Count { get; set; }
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,60 +0,0 @@
|
|||||||
//------------------------------------------------------------------------------
|
|
||||||
// <auto-generated>
|
|
||||||
// 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.
|
|
||||||
// </auto-generated>
|
|
||||||
//------------------------------------------------------------------------------
|
|
||||||
#nullable enable
|
|
||||||
namespace LukeHagar.PlexAPI.SDK.Models.Requests
|
|
||||||
{
|
|
||||||
using LukeHagar.PlexAPI.SDK.Utils;
|
|
||||||
using Newtonsoft.Json;
|
|
||||||
using System;
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Setting that indicates if credits markers detection is enabled. (-1 = Library default, 0 = Disabled).
|
|
||||||
/// </summary>
|
|
||||||
public enum GetSearchAllLibrariesEnableCreditsMarkerGeneration
|
|
||||||
{
|
|
||||||
[JsonProperty("-1")]
|
|
||||||
LibraryDefault,
|
|
||||||
[JsonProperty("0")]
|
|
||||||
Disabled,
|
|
||||||
}
|
|
||||||
|
|
||||||
public static class GetSearchAllLibrariesEnableCreditsMarkerGenerationExtension
|
|
||||||
{
|
|
||||||
public static string Value(this GetSearchAllLibrariesEnableCreditsMarkerGeneration value)
|
|
||||||
{
|
|
||||||
return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString())[0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
|
|
||||||
}
|
|
||||||
|
|
||||||
public static GetSearchAllLibrariesEnableCreditsMarkerGeneration ToEnum(this string value)
|
|
||||||
{
|
|
||||||
foreach(var field in typeof(GetSearchAllLibrariesEnableCreditsMarkerGeneration).GetFields())
|
|
||||||
{
|
|
||||||
var attributes = field.GetCustomAttributes(typeof(JsonPropertyAttribute), false);
|
|
||||||
if (attributes.Length == 0)
|
|
||||||
{
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
var attribute = attributes[0] as JsonPropertyAttribute;
|
|
||||||
if (attribute != null && attribute.PropertyName == value)
|
|
||||||
{
|
|
||||||
var enumVal = field.GetValue(null);
|
|
||||||
|
|
||||||
if (enumVal is GetSearchAllLibrariesEnableCreditsMarkerGeneration)
|
|
||||||
{
|
|
||||||
return (GetSearchAllLibrariesEnableCreditsMarkerGeneration)enumVal;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
throw new Exception($"Unknown value {value} for enum GetSearchAllLibrariesEnableCreditsMarkerGeneration");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user