mirror of
https://github.com/LukeHagar/plexcsharp.git
synced 2025-12-06 12:37:46 +00:00
78 lines
2.1 KiB
C#
78 lines
2.1 KiB
C#
|
|
//------------------------------------------------------------------------------
|
|
// <auto-generated>
|
|
// This code was generated by Speakeasy (https://speakeasyapi.dev). 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 PlexAPI.Models.Requests
|
|
{
|
|
using Newtonsoft.Json;
|
|
|
|
public class SearchLibraryMetadata
|
|
{
|
|
|
|
[JsonProperty("ratingKey")]
|
|
public string? RatingKey { get; set; }
|
|
|
|
[JsonProperty("key")]
|
|
public string? Key { get; set; }
|
|
|
|
[JsonProperty("parentRatingKey")]
|
|
public string? ParentRatingKey { get; set; }
|
|
|
|
[JsonProperty("guid")]
|
|
public string? Guid { get; set; }
|
|
|
|
[JsonProperty("parentGuid")]
|
|
public string? ParentGuid { get; set; }
|
|
|
|
[JsonProperty("parentStudio")]
|
|
public string? ParentStudio { get; set; }
|
|
|
|
[JsonProperty("type")]
|
|
public string? Type { get; set; }
|
|
|
|
[JsonProperty("title")]
|
|
public string? Title { get; set; }
|
|
|
|
[JsonProperty("parentKey")]
|
|
public string? ParentKey { get; set; }
|
|
|
|
[JsonProperty("parentTitle")]
|
|
public string? ParentTitle { get; set; }
|
|
|
|
[JsonProperty("summary")]
|
|
public string? Summary { get; set; }
|
|
|
|
[JsonProperty("index")]
|
|
public int? Index { get; set; }
|
|
|
|
[JsonProperty("parentIndex")]
|
|
public int? ParentIndex { get; set; }
|
|
|
|
[JsonProperty("parentYear")]
|
|
public int? ParentYear { get; set; }
|
|
|
|
[JsonProperty("thumb")]
|
|
public string? Thumb { get; set; }
|
|
|
|
[JsonProperty("art")]
|
|
public string? Art { get; set; }
|
|
|
|
[JsonProperty("parentThumb")]
|
|
public string? ParentThumb { get; set; }
|
|
|
|
[JsonProperty("parentTheme")]
|
|
public string? ParentTheme { get; set; }
|
|
|
|
[JsonProperty("addedAt")]
|
|
public int? AddedAt { get; set; }
|
|
|
|
[JsonProperty("updatedAt")]
|
|
public int? UpdatedAt { get; set; }
|
|
}
|
|
} |