Regenerated SDK with small changes

This commit is contained in:
Luke Hagar
2024-06-27 14:39:09 +00:00
parent 367dc248c3
commit 7585dd0b5c
845 changed files with 12822 additions and 4844 deletions

View File

@@ -0,0 +1,59 @@
//------------------------------------------------------------------------------
// <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 PlexAPI.Models.Requests;
using PlexAPI.Utils;
public class GetSessionHistoryRequest
{
/// <summary>
/// Sorts the results by the specified field followed by the direction (asc, desc)<br/>
///
/// <remarks>
///
/// </remarks>
/// </summary>
[SpeakeasyMetadata("queryParam:style=form,explode=true,name=sort")]
public string? Sort { get; set; }
/// <summary>
/// Filter results by those that are related to a specific users id<br/>
///
/// <remarks>
///
/// </remarks>
/// </summary>
[SpeakeasyMetadata("queryParam:style=form,explode=true,name=accountId")]
public long? AccountId { get; set; }
/// <summary>
/// Filters content by field and direction/equality<br/>
///
/// <remarks>
/// (Unknown if viewedAt is the only supported column)<br/>
///
/// </remarks>
/// </summary>
[SpeakeasyMetadata("queryParam:style=form,explode=true,name=filter")]
public Filter? Filter { get; set; }
/// <summary>
/// Filters the results based on the id of a valid library section<br/>
///
/// <remarks>
///
/// </remarks>
/// </summary>
[SpeakeasyMetadata("queryParam:style=form,explode=true,name=librarySectionID")]
public long? LibrarySectionID { get; set; }
}
}