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

37 lines
1.0 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;
using System.Collections.Generic;
public class GetUpdateStatusMediaContainer
{
[JsonProperty("size")]
public int? Size { get; set; }
[JsonProperty("canInstall")]
public bool? CanInstall { get; set; }
[JsonProperty("checkedAt")]
public int? CheckedAt { get; set; }
[JsonProperty("downloadURL")]
public string? DownloadURL { get; set; }
[JsonProperty("status")]
public int? Status { get; set; }
[JsonProperty("Release")]
public List<Release>? Release { get; set; }
}
}