export interface IOpinion { id: string; opinionToUri: string; comment: string; score: number; consumerId: string; opinionFromUri: string; createdAt: string; uri: string; status: string; opinionFrom: T; refusedComment?: string; opinionTo: K; isClaimed?: boolean; claimComment?: string; updatedAt?: string; } export interface IAverage { average: number; count: number; }