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

export interface Document {
  id: string;
  name: string;
  category: string;
  status: DocumentStatus;
  owner: string;
  /** @nullable */
  expiresAt?: Date | null;
  /** @nullable */
  fileUrl?: string | null;
  updatedAt: Date;
}
