/**
 * 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 { QuotePriority } from './quotePriority';
import type { QuoteStatus } from './quoteStatus';

export interface Quote {
  id: string;
  quoteNumber: string;
  clientName: string;
  /** @nullable */
  company?: string | null;
  email?: string;
  /** @nullable */
  phone?: string | null;
  service: string;
  message?: string;
  status: QuoteStatus;
  /** @nullable */
  amount?: number | null;
  priority: QuotePriority;
  createdAt: Date;
  updatedAt?: Date;
}
