export type AttributeUpdateAttributeDto = { attributeGroupId: string; attributeId: string; nameByLang: AttributeUpdateAttributeNameByLangDto[]; color: string; internalName: string; verticalId: string; linkedId?: string; }; type AttributeUpdateAttributeNameByLangDto = { langId: string; name: string; }; export {};