/**
 * 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 { DeviceStatus } from './deviceStatus';
import type { MobileUser } from './mobileUser';

export interface MobileLoginResponse {
  user: MobileUser;
  /** Credencial de sesión opaca; nunca se almacena sin hash. */
  token: string;
  device: DeviceStatus;
  /** Credencial opaca de dispositivo mostrada únicamente durante el primer registro. */
  deviceCredential?: string;
}
