ArtistInfo

interface ArtistInfo {
    IndexNumber?: null | number;
    IsAutomated?: boolean;
    MetadataCountryCode?: null | string;
    MetadataLanguage?: null | string;
    Name?: null | string;
    OriginalTitle?: null | string;
    ParentIndexNumber?: null | number;
    Path?: null | string;
    PremiereDate?: null | string;
    ProviderIds?: null | {
        [key: string]: string | null;
    };
    SongInfos?: SongInfo[];
    Year?: null | number;
}

Properties

IndexNumber?: null | number

ArtistInfo

IsAutomated?: boolean

ArtistInfo

MetadataCountryCode?: null | string

Gets or sets the metadata country code.

ArtistInfo

MetadataLanguage?: null | string

Gets or sets the metadata language.

ArtistInfo

Name?: null | string

Gets or sets the name.

ArtistInfo

OriginalTitle?: null | string

Gets or sets the original title.

ArtistInfo

ParentIndexNumber?: null | number

ArtistInfo

Path?: null | string

Gets or sets the path.

ArtistInfo

PremiereDate?: null | string

ArtistInfo

ProviderIds?: null | {
    [key: string]: string | null;
}

Gets or sets the provider ids.

ArtistInfo

SongInfos?: SongInfo[]

ArtistInfo

Year?: null | number

Gets or sets the year.

ArtistInfo