interface Host {
    _id?: string;
    categoryInterests: (undefined | string)[] | Category[];
    createdDate?: Date;
    defaultReviewsDisplayType: HostReviewsDisplayType;
    homeProgress: HostHomeProgress;
    id?: string;
    level: HostLevel;
    modifiedDate?: Date;
    onboardingCompleted?: boolean;
    pagePath: string;
    previousExperience: PreviousExperience;
    publicProfileEnabled?: boolean;
    socialChannels: SocialChannels;
    socialEngagementUserId?: string;
    user: string | SavedUser;
}

Hierarchy (View Summary)

Properties

_id?: string
categoryInterests: (undefined | string)[] | Category[]
createdDate?: Date
defaultReviewsDisplayType: HostReviewsDisplayType
homeProgress: HostHomeProgress
id?: string

Use _id instead

level: HostLevel
modifiedDate?: Date
onboardingCompleted?: boolean
pagePath: string
previousExperience: PreviousExperience
publicProfileEnabled?: boolean
socialChannels: SocialChannels
socialEngagementUserId?: string
user: string | SavedUser