/** * @type SortingRuleStep: Document representing a product sorting rule step. * * @property attributeId: The ID for sorting attribute. * - **Max Length:** 256 * * @property direction: The direction of the sorting attribute. * * @property isSystem: Whether or not the attribute is a system attribute. * * @property position: The position of product sorting rule step. * * @property textRelevanceIncluded: The text relevance included. * * @property typeId: The sorting type for sorting attribute. * - **Max Length:** 256 * */ export type SortingRuleStep = { attributeId?: string; direction?: SortingRuleStepDirectionEnum; isSystem?: boolean; position?: number; textRelevanceIncluded?: boolean; typeId?: string; } & { [key: string]: any; }; export type SortingRuleStepDirectionEnum = 'asc' | 'desc';