AlbumInfo

interface AlbumInfo {
    AlbumArtists?: string[];
    ArtistProviderIds?: {
        [key: string]: string | null;
    };
    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

AlbumArtists?: string[]

Gets or sets the album artist.

AlbumInfo

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

Gets or sets the artist provider ids.

AlbumInfo

IndexNumber?: null | number

AlbumInfo

IsAutomated?: boolean

AlbumInfo

MetadataCountryCode?: null | string

Gets or sets the metadata country code.

AlbumInfo

MetadataLanguage?: null | string

Gets or sets the metadata language.

AlbumInfo

Name?: null | string

Gets or sets the name.

AlbumInfo

OriginalTitle?: null | string

Gets or sets the original title.

AlbumInfo

ParentIndexNumber?: null | number

AlbumInfo

Path?: null | string

Gets or sets the path.

AlbumInfo

PremiereDate?: null | string

AlbumInfo

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

Gets or sets the provider ids.

AlbumInfo

SongInfos?: SongInfo[]

AlbumInfo

Year?: null | number

Gets or sets the year.

AlbumInfo