/** * Generated by orval v7.21.0 🍺 * Do not edit manually. * Negodata Api Server * OpenAPI spec version: 0.1.0 */ import type { ReqCreateQuotationManagerName } from './reqCreateQuotationManagerName'; import type { ReqCreateQuotationManagerEmail } from './reqCreateQuotationManagerEmail'; import type { ReqCreateQuotationManagerContactNumber } from './reqCreateQuotationManagerContactNumber'; import type { ReqCreateQuotationMemo } from './reqCreateQuotationMemo'; export interface ReqCreateQuotation { qt_setting_id: string; version_id: string; name?: string; number?: string; type?: number; status?: number; start_time: string; end_time: string; round?: number; manager_name?: ReqCreateQuotationManagerName; manager_email?: ReqCreateQuotationManagerEmail; manager_contact_number?: ReqCreateQuotationManagerContactNumber; memo?: ReqCreateQuotationMemo; }