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

export interface QuoteInput {
  /** @minLength 2 */
  clientName: string;
  company?: string;
  email: string;
  phone?: string;
  service: string;
  /** @minLength 10 */
  message: string;
  priority?: QuoteInputPriority;
  amount?: number;
}
