export interface Recognition { id: string; badge: Badge; sender: User; receiver: User; message: Message; rewards: Reward[]; background?: Background; animation: string; createdAt: string; type: string; } export interface Badge { animation: string; id: string; name: string; thumbnail: string; } export interface User { id: string; displayName: string; } export interface Message { data: string; color: string; } export interface Reward { type: string; value: number; } export interface Background { colors: string[]; }