//------------------------------------------------------------------------------
//
// 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.Components
{
using LukeHagar.PlexAPI.SDK.Models.Components;
using LukeHagar.PlexAPI.SDK.Utils;
using Newtonsoft.Json;
using System.Collections.Generic;
public class LibrarySection
{
///
/// The title of the library
///
[JsonProperty("title")]
public string? Title { get; set; }
///
/// The type of media content in the Plex library. This can represent videos, music, or photos.
///
///
///
///
///
[JsonProperty("type")]
public MediaTypeString Type { get; set; } = default!;
[JsonProperty("agent")]
public string? Agent { get; set; }
[JsonProperty("allowSync")]
public bool? AllowSync { get; set; }
[JsonProperty("art")]
public string? Art { get; set; }
[JsonProperty("composite")]
public string? Composite { get; set; }
[JsonProperty("content")]
public bool? Content { get; set; }
[JsonProperty("contentChangedAt")]
public long? ContentChangedAt { get; set; }
[JsonProperty("createdAt")]
public long? CreatedAt { get; set; }
[JsonProperty("directory")]
public bool? Directory { get; set; }
///
/// Indicates whether this section has filtering capabilities
///
[JsonProperty("filters")]
public bool? Filters { get; set; }
[JsonProperty("hidden")]
public bool? Hidden { get; set; }
[JsonProperty("key")]
public string? Key { get; set; }
[JsonProperty("language")]
public string Language { get; set; } = default!;
///
/// The universally unique identifier for the library.
///
[JsonProperty("uuid")]
public string Uuid { get; set; } = default!;
[JsonProperty("Location")]
public List? Location { get; set; }
///
/// Indicates whether this library section is currently scanning
///
[JsonProperty("refreshing")]
public bool? Refreshing { get; set; }
[JsonProperty("scannedAt")]
public long? ScannedAt { get; set; }
[JsonProperty("scanner")]
public string? Scanner { get; set; }
[JsonProperty("thumb")]
public string? Thumb { get; set; }
[JsonProperty("updatedAt")]
public long? UpdatedAt { get; set; }
}
}