mirror of
https://github.com/LukeHagar/plexcsharp.git
synced 2025-12-06 12:37:46 +00:00
ci: regenerated with OpenAPI Doc 0.0.3, Speakeasy CLI 1.129.1
This commit is contained in:
60
PlexAPI/Models/Requests/GetResizedPhotoRequest.cs
Normal file
60
PlexAPI/Models/Requests/GetResizedPhotoRequest.cs
Normal file
@@ -0,0 +1,60 @@
|
||||
|
||||
//------------------------------------------------------------------------------
|
||||
// <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.Utils;
|
||||
|
||||
public class GetResizedPhotoRequest
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// The width for the resized photo
|
||||
/// </summary>
|
||||
[SpeakeasyMetadata("queryParam:style=form,explode=true,name=width")]
|
||||
public double Width { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// The height for the resized photo
|
||||
/// </summary>
|
||||
[SpeakeasyMetadata("queryParam:style=form,explode=true,name=height")]
|
||||
public double Height { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// The opacity for the resized photo
|
||||
/// </summary>
|
||||
[SpeakeasyMetadata("queryParam:style=form,explode=true,name=opacity")]
|
||||
public long Opacity { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// The width for the resized photo
|
||||
/// </summary>
|
||||
[SpeakeasyMetadata("queryParam:style=form,explode=true,name=blur")]
|
||||
public double Blur { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// images are always scaled proportionally. A value of '1' in minSize will make the smaller native dimension the dimension resized against.
|
||||
/// </summary>
|
||||
[SpeakeasyMetadata("queryParam:style=form,explode=true,name=minSize")]
|
||||
public MinSize MinSize { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// allow images to be resized beyond native dimensions.
|
||||
/// </summary>
|
||||
[SpeakeasyMetadata("queryParam:style=form,explode=true,name=upscale")]
|
||||
public Upscale Upscale { get; set; } = default!;
|
||||
|
||||
/// <summary>
|
||||
/// path to image within Plex
|
||||
/// </summary>
|
||||
[SpeakeasyMetadata("queryParam:style=form,explode=true,name=url")]
|
||||
public string Url { get; set; } = default!;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user