SongInfo

interface SongInfo {
    Album?: null | string;
    AlbumArtists?: null | string[];
    Artists?: null | string[];
    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;
    };
    Year?: null | number;
}

Properties

Album?: null | string

SongInfo

AlbumArtists?: null | string[]

SongInfo

Artists?: null | string[]

SongInfo

IndexNumber?: null | number

SongInfo

IsAutomated?: boolean

SongInfo

MetadataCountryCode?: null | string

Gets or sets the metadata country code.

SongInfo

MetadataLanguage?: null | string

Gets or sets the metadata language.

SongInfo

Name?: null | string

Gets or sets the name.

SongInfo

OriginalTitle?: null | string

Gets or sets the original title.

SongInfo

ParentIndexNumber?: null | number

SongInfo

Path?: null | string

Gets or sets the path.

SongInfo

PremiereDate?: null | string

SongInfo

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

Gets or sets the provider ids.

SongInfo

Year?: null | number

Gets or sets the year.

SongInfo