import type { VariationAttributeValue } from './VariationAttributeValue'; /** * @type VariationAttribute: Document representing a variation attribute. * * @property id: The ID of the variation attribute. * - **Min Length:** 1 * * @property name: The localized display name of the variation attribute. * * @property values: The sorted array of variation values. This array can be empty. * */ export type VariationAttribute = { id: string; name?: string; values?: Array; } & { [key: string]: any; };