//------------------------------------------------------------------------------
//
// 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.
//
//------------------------------------------------------------------------------
#nullable enable
namespace PlexAPI.Models.Requests
{
using PlexAPI.Utils;
///
/// Login credentials
///
public class PostSignInRequestBody
{
[SpeakeasyMetadata("form:name=login")]
public string Login { get; set; } = default!;
[SpeakeasyMetadata("form:name=password")]
public string Password { get; set; } = default!;
[SpeakeasyMetadata("form:name=rememberMe")]
public bool? RememberMe { get; set; } = false;
}
}