mirror of
https://github.com/LukeHagar/plexcsharp.git
synced 2025-12-06 12:37:46 +00:00
95 lines
2.9 KiB
C#
95 lines
2.9 KiB
C#
//------------------------------------------------------------------------------
|
|
// <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 GetAllLibrariesDirectory
|
|
{
|
|
|
|
[JsonProperty("allowSync")]
|
|
public bool AllowSync { get; set; } = default!;
|
|
|
|
[JsonProperty("art")]
|
|
public string Art { get; set; } = default!;
|
|
|
|
[JsonProperty("composite")]
|
|
public string Composite { get; set; } = default!;
|
|
|
|
[JsonProperty("filters")]
|
|
public bool Filters { get; set; } = default!;
|
|
|
|
[JsonProperty("refreshing")]
|
|
public bool Refreshing { get; set; } = default!;
|
|
|
|
[JsonProperty("thumb")]
|
|
public string Thumb { get; set; } = default!;
|
|
|
|
[JsonProperty("key")]
|
|
public string Key { get; set; } = default!;
|
|
|
|
[JsonProperty("type")]
|
|
public string Type { get; set; } = default!;
|
|
|
|
[JsonProperty("title")]
|
|
public string Title { get; set; } = default!;
|
|
|
|
[JsonProperty("agent")]
|
|
public string Agent { get; set; } = default!;
|
|
|
|
[JsonProperty("scanner")]
|
|
public string Scanner { get; set; } = default!;
|
|
|
|
[JsonProperty("language")]
|
|
public string Language { get; set; } = default!;
|
|
|
|
[JsonProperty("uuid")]
|
|
public string Uuid { get; set; } = default!;
|
|
|
|
/// <summary>
|
|
/// Unix epoch datetime in seconds
|
|
/// </summary>
|
|
[JsonProperty("updatedAt")]
|
|
public long UpdatedAt { get; set; } = default!;
|
|
|
|
/// <summary>
|
|
/// Unix epoch datetime in seconds
|
|
/// </summary>
|
|
[JsonProperty("createdAt")]
|
|
public long CreatedAt { get; set; } = default!;
|
|
|
|
/// <summary>
|
|
/// Unix epoch datetime in seconds
|
|
/// </summary>
|
|
[JsonProperty("scannedAt")]
|
|
public long ScannedAt { get; set; } = default!;
|
|
|
|
[JsonProperty("content")]
|
|
public bool Content { get; set; } = default!;
|
|
|
|
[JsonProperty("directory")]
|
|
public bool Directory { get; set; } = default!;
|
|
|
|
/// <summary>
|
|
/// Unix epoch datetime in seconds
|
|
/// </summary>
|
|
[JsonProperty("contentChangedAt")]
|
|
public long ContentChangedAt { get; set; } = default!;
|
|
|
|
[JsonProperty("hidden")]
|
|
public int Hidden { get; set; } = default!;
|
|
|
|
[JsonProperty("Location")]
|
|
public List<GetAllLibrariesLocation> Location { get; set; } = default!;
|
|
}
|
|
} |