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

38 lines
1.1 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;
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; }
}
}