mirror of
https://github.com/LukeHagar/plexcsharp.git
synced 2025-12-06 20:47:49 +00:00
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.391.3
This commit is contained in:
@@ -0,0 +1,60 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <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 LukeHagar.PlexAPI.SDK.Models.Requests
|
||||
{
|
||||
using LukeHagar.PlexAPI.SDK.Models.Requests;
|
||||
using LukeHagar.PlexAPI.SDK.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; } = 100;
|
||||
|
||||
/// <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