User profile object returned by Spotify API

interface SpotifyUserProfile {
    country: string;
    display_name: string;
    email: string;
    explicit_content: { filter_enabled: boolean; filter_locked: boolean };
    external_urls: SpotifyExternalUrls;
    followers: SpotifyFollowers;
    href: string;
    id: string;
    images: SpotifyImage[];
    product: string;
    type: string;
    uri: string;
}

Properties

country: string
display_name: string
email: string
explicit_content: { filter_enabled: boolean; filter_locked: boolean }
external_urls: SpotifyExternalUrls
followers: SpotifyFollowers
href: string
id: string
images: SpotifyImage[]
product: string
type: string
uri: string