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

29 lines
978 B
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 PlexAPI.Utils;
public class GetPlaylistContentsRequest
{
/// <summary>
/// the ID of the playlist
/// </summary>
[SpeakeasyMetadata("pathParam:style=simple,explode=false,name=playlistID")]
public double PlaylistID { get; set; } = default!;
/// <summary>
/// the metadata type of the item to return
/// </summary>
[SpeakeasyMetadata("queryParam:style=form,explode=true,name=type")]
public double Type { get; set; } = default!;
}
}