/** * @type OptionValue: Document representing an option value. * * @property default: A flag indicating whether this option value is the default one. * * @property id: The ID of the option value. * - **Min Length:** 1 * - **Max Length:** 100 * * @property name: The localized name of the option value. * * @property price: The effective price of the option value. * */ export type OptionValue = { default?: boolean; id: string; name?: string; price?: number; } & { [key: string]: any; };