mirror of
https://github.com/LukeHagar/plexcsharp.git
synced 2025-12-06 12:37:46 +00:00
52 lines
1.6 KiB
C#
52 lines
1.6 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.Utils;
|
|
using Newtonsoft.Json;
|
|
|
|
public class Producer
|
|
{
|
|
|
|
/// <summary>
|
|
/// Unique identifier for the producer.
|
|
/// </summary>
|
|
[JsonProperty("id")]
|
|
public int Id { get; set; } = default!;
|
|
|
|
/// <summary>
|
|
/// The filter string used to query this producer.
|
|
/// </summary>
|
|
[JsonProperty("filter")]
|
|
public string Filter { get; set; } = default!;
|
|
|
|
/// <summary>
|
|
/// The name of the producer
|
|
/// </summary>
|
|
[JsonProperty("tag")]
|
|
public string Tag { get; set; } = default!;
|
|
|
|
/// <summary>
|
|
/// A 24-character hexadecimal unique key associated with the producer's tag, used for internal identification.<br/>
|
|
///
|
|
/// <remarks>
|
|
///
|
|
/// </remarks>
|
|
/// </summary>
|
|
[JsonProperty("tagKey")]
|
|
public string TagKey { get; set; } = default!;
|
|
|
|
/// <summary>
|
|
/// The absolute URL of the thumbnail image for the producer.
|
|
/// </summary>
|
|
[JsonProperty("thumb")]
|
|
public string? Thumb { get; set; }
|
|
}
|
|
} |