/** * Generated by orval v7.21.0 🍺 * Do not edit manually. * Negodata Api Server * OpenAPI spec version: 0.1.0 */ import type { ReqCreateQuotationVersionId } from './reqCreateQuotationVersionId'; import type { ReqCreateQuotationStartTime } from './reqCreateQuotationStartTime'; import type { ReqCreateQuotationManagerName } from './reqCreateQuotationManagerName'; import type { ReqCreateQuotationManagerEmail } from './reqCreateQuotationManagerEmail'; import type { ReqCreateQuotationManagerContactNumber } from './reqCreateQuotationManagerContactNumber'; import type { ReqCreateQuotationMemo } from './reqCreateQuotationMemo'; import type { ReqCreateQuotationMdPrice } from './reqCreateQuotationMdPrice'; import type { ReqCreateQuotationMidAction } from './reqCreateQuotationMidAction'; import type { ReqCreateQuotationOverAction } from './reqCreateQuotationOverAction'; export interface ReqCreateQuotation { qt_setting_id: string; version_id?: ReqCreateQuotationVersionId; name?: string; type?: number; status?: number; start_time?: ReqCreateQuotationStartTime; end_time: string; round?: number; manager_name?: ReqCreateQuotationManagerName; manager_email?: ReqCreateQuotationManagerEmail; manager_contact_number?: ReqCreateQuotationManagerContactNumber; memo?: ReqCreateQuotationMemo; md_price?: ReqCreateQuotationMdPrice; item_ids?: string[]; supplier_ids?: string[]; card_ids?: string[]; mid_action?: ReqCreateQuotationMidAction; over_action?: ReqCreateQuotationOverAction; }