/**
 * Generated by orval v8.23.0 🍺
 * Do not edit manually.
 * Api
 * API operativa de Y.E. Transport & Constructors
 * OpenAPI spec version: 1.0.0
 */
import type { AdminSecondFactorInput } from './adminSecondFactorInput';
import type { LoginInputClient } from './loginInputClient';

export interface LoginInput {
  email: string;
  /** @minLength 8 */
  password: string;
  client?: LoginInputClient;
  secondFactor?: AdminSecondFactorInput;
}
