import type { ExcludedProduct } from './ExcludedProduct'; /** * @type ExcludedProductRequest: The excluded product record * * @property data: The list of the excluded products. * */ export type ExcludedProductRequest = { data: Array; } & { [key: string]: any; };