interface HostProfileRequest {
    bio?: string;
    categoryInterests: (undefined | string)[] | Category[];
    country?: HostProfileCountry;
    displayName?: string;
    languages?: HostProfileLanguage[];
    profilePictureUrl?: string;
    pronouns?: string[];
    socialChannels: SocialChannels;
}

Hierarchy

  • Pick<SavedUser, "bio" | "displayName" | "pronouns" | "profilePictureUrl">
  • Pick<SavedHost, "socialChannels" | "categoryInterests">
    • HostProfileRequest

Properties

bio?: string
categoryInterests: (undefined | string)[] | Category[]
displayName?: string
languages?: HostProfileLanguage[]
profilePictureUrl?: string
pronouns?: string[]
socialChannels: SocialChannels