/** * Generated by orval v7.21.0 🍺 * Do not edit manually. * Negodata Api Server * OpenAPI spec version: 0.1.0 */ import type { ItemDataCode } from './itemDataCode'; import type { ItemDataCategory } from './itemDataCategory'; import type { ItemDataImageUrl } from './itemDataImageUrl'; import type { ItemDataModelName } from './itemDataModelName'; import type { ItemDataSpec } from './itemDataSpec'; import type { ItemDataManufacturer } from './itemDataManufacturer'; import type { ItemDataMadeIn } from './itemDataMadeIn'; import type { ItemDataPrice } from './itemDataPrice'; import type { ItemDataInternetLowestPrice } from './itemDataInternetLowestPrice'; import type { ItemDataPurchasePrice } from './itemDataPurchasePrice'; import type { ItemDataSellingPrice } from './itemDataSellingPrice'; import type { ItemDataMoq } from './itemDataMoq'; import type { ItemDataLeadTime } from './itemDataLeadTime'; import type { ItemDataQuantityUnit } from './itemDataQuantityUnit'; import type { ItemDataDeliveryType } from './itemDataDeliveryType'; import type { ItemDataVatYn } from './itemDataVatYn'; import type { ItemDataDeliveryFeeYn } from './itemDataDeliveryFeeYn'; import type { ItemDataCreatedAt } from './itemDataCreatedAt'; import type { ItemDataUpdatedAt } from './itemDataUpdatedAt'; export interface ItemData { item_id: string; company_id: string; user_id: string; name: string; code?: ItemDataCode; category?: ItemDataCategory; category_type?: number; image_url?: ItemDataImageUrl; model_name?: ItemDataModelName; spec?: ItemDataSpec; manufacturer?: ItemDataManufacturer; made_in?: ItemDataMadeIn; price?: ItemDataPrice; internet_lowest_price_yn?: boolean; internet_lowest_price?: ItemDataInternetLowestPrice; purchase_price?: ItemDataPurchasePrice; selling_price?: ItemDataSellingPrice; moq?: ItemDataMoq; lead_time?: ItemDataLeadTime; quantity_unit?: ItemDataQuantityUnit; delivery_type?: ItemDataDeliveryType; vat_yn?: ItemDataVatYn; delivery_fee_yn?: ItemDataDeliveryFeeYn; created_at?: ItemDataCreatedAt; updated_at?: ItemDataUpdatedAt; }