import { EnumBooleanStringified, EnumCurrency } from "../@types"; import { SupportedLanguage } from "./command/baseparams"; export interface IGiftPrice { value: number | string; currency: EnumCurrency; } export interface IGiftTranslation { language: SupportedLanguage; value: string; } export interface IGift { id: number | string; name: string; price: IGiftPrice; imageUrl: string; active: EnumBooleanStringified; categoryId: number | string; translations: IGiftTranslation[]; }