/** * @type ObjectAttributeValueDefinition: An attribute definition value * * @property id: The ID of the attribute value * - **Max Length:** 256 * * @property value: The value of the attribute * - **Max Length:** 4000 * * @property displayValue: * * @property description: * * @property position: The position of the attribute value within the set of attribute values * */ export type ObjectAttributeValueDefinition = { id?: string; value?: string; displayValue?: { [key: string]: string; }; description?: { [key: string]: string; }; position?: number; } & { [key: string]: any; };