interface ReviewBase {
    comment: string;
    isAnonymous: boolean;
    isDeleted: boolean;
    rate: number;
    reviewedBy: string;
    source: "user" | "organization";
    subRates?: Record<string, number>;
    target: "user" | "organization" | "product";
    targetId: string;
}

Hierarchy

  • WithCustomFields
    • ReviewBase

Properties

comment: string
isAnonymous: boolean
isDeleted: boolean
rate: number
reviewedBy: string
source: "user" | "organization"
subRates?: Record<string, number>
target: "user" | "organization" | "product"
targetId: string

Generated using TypeDoc