Files
plexcsharp/PlexAPI/Models/Requests/GetWatchListResponseBody.cs

44 lines
1.3 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 PlexAPI.Models.Requests
{
using Newtonsoft.Json;
using PlexAPI.Models.Requests;
using PlexAPI.Utils;
using System.Collections.Generic;
/// <summary>
/// Watchlist Data
/// </summary>
public class GetWatchListResponseBody
{
[JsonProperty("librarySectionID")]
public string? LibrarySectionID { get; set; }
[JsonProperty("librarySectionTitle")]
public string? LibrarySectionTitle { get; set; }
[JsonProperty("offset")]
public int? Offset { get; set; }
[JsonProperty("totalSize")]
public int? TotalSize { get; set; }
[JsonProperty("identifier")]
public string? Identifier { get; set; }
[JsonProperty("size")]
public int? Size { get; set; }
[JsonProperty("Metadata")]
public List<Metadata>? Metadata { get; set; }
}
}