// Copyright © 2022-2026 Partium, Inc. DBA Partium import { BasePaginatedRequest } from '../../core'; /** * Request for listing selectable attribute definitions. */ export interface GetSelectableAttributesRequest extends BasePaginatedRequest { /** * Organization identifier when explicitly selecting an organization. */ organization?: string; /** * Preferred language for the attribute display names. */ language?: string; /** * Ordered fallback languages for names when the preferred language is missing. */ fallbackLanguages?: string[]; /** * Case-insensitive search term for `attributeId` or the resolved display name. */ search?: string; }