import type { CategorizationAttributeDefinition } from './CategorizationAttributeDefinition'; /** * @type CategorizationAttributeDefinitionsResult: The list of categorization attributes supported for rule based categorization. * * @property data: The list of the categorization attribute definitions. This can be empty. * * @property limit: Maximum records to retrieve per request. The limit with its constraints (minimum, maximum, default) is defined by the request parameter `limit` of the endpoint returning this schema. * * @property total: The total number of hits that match the search\'s criteria. This can be greater than the number of results returned as search results are pagenated. * */ export type CategorizationAttributeDefinitionsResult = { data: Array; limit: number; total: number; } & { [key: string]: any; };