import type { Money } from './Money'; /** * @type ProductOptionValue: Document representing a product option Value * * @property defaultProductOptionValue: Flag indicating if the product option value is the default value for the product option. * * @property id: The ID of the product option value. * - **Min Length:** 1 * * @property optionPrices: The list of prices in the product option value. * * @property skuExtension: The SKU extension of the product option value. * * @property value: The localized value of the product option. * */ export type ProductOptionValue = { defaultProductOptionValue?: boolean; id: string; optionPrices?: Array; skuExtension?: string; value: { [key: string]: string; }; } & { [key: string]: any; };