interface HostProfileResponse {
    bio?: string;
    categoryInterests?: SelectedSavedCategoriesProp[];
    country?: HostProfileCountry;
    displayName?: string;
    emailCaptureLinkDestination?: string;
    firstName: string;
    hasTripRequests?: boolean;
    languages?: HostProfileLanguage[];
    lastName: string;
    pagePath: string;
    profilePictureUrl?: string;
    pronouns?: string[];
    publicProfileEnabled?: boolean;
    referralLinkDestination?: string;
    socialChannels: SocialChannels;
    status: constants.user.UserStatuses;
    surveyLinkDestination?: string;
    tripsRun?: number;
    yearJoined?: number;
}

Hierarchy

  • Pick<
        HostProfile,
        | "firstName"
        | "lastName"
        | "status"
        | "displayName"
        | "profilePictureUrl"
        | "pronouns"
        | "bio"
        | "socialChannels"
        | "publicProfileEnabled"
        | "tripsRun"
        | "yearJoined"
        | "pagePath",
    >
    • HostProfileResponse

Properties

bio?: string
categoryInterests?: SelectedSavedCategoriesProp[]
displayName?: string
emailCaptureLinkDestination?: string
firstName: string
hasTripRequests?: boolean
languages?: HostProfileLanguage[]
lastName: string
pagePath: string
profilePictureUrl?: string
pronouns?: string[]
publicProfileEnabled?: boolean
referralLinkDestination?: string
socialChannels: SocialChannels
surveyLinkDestination?: string
tripsRun?: number
yearJoined?: number