//------------------------------------------------------------------------------ // // This code was generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. // // Changes to this file may cause incorrect behavior and will be lost when // the code is regenerated. // //------------------------------------------------------------------------------ #nullable enable namespace LukeHagar.PlexAPI.SDK.Models.Requests { using LukeHagar.PlexAPI.SDK.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!; /// /// Unix epoch datetime in seconds /// [JsonProperty("updatedAt")] public long UpdatedAt { get; set; } = default!; /// /// Unix epoch datetime in seconds /// [JsonProperty("createdAt")] public long CreatedAt { get; set; } = default!; /// /// Unix epoch datetime in seconds /// [JsonProperty("scannedAt")] public long ScannedAt { get; set; } = default!; [JsonProperty("content")] public bool Content { get; set; } = default!; [JsonProperty("directory")] public bool Directory { get; set; } = default!; /// /// Unix epoch datetime in seconds /// [JsonProperty("contentChangedAt")] public long ContentChangedAt { get; set; } = default!; [JsonProperty("hidden")] public int Hidden { get; set; } = default!; [JsonProperty("Location")] public List Location { get; set; } = default!; } }