/**
 * 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 { SecurityAttemptResult } from './securityAttemptResult';

export interface SecurityAttempt {
  id: string;
  /** @nullable */
  employeeId?: string | null;
  /** @nullable */
  employeeNumber?: string | null;
  /** @nullable */
  projectId?: string | null;
  /** @nullable */
  worksiteId?: string | null;
  /** @nullable */
  deviceId?: string | null;
  /** @nullable */
  platform?: string | null;
  result: SecurityAttemptResult;
  reason: string;
  /** @nullable */
  latitude?: number | null;
  /** @nullable */
  longitude?: number | null;
  /**
     * @minimum 0
     * @maximum 100
     */
  riskScore: number;
  createdAt: Date;
}
