Interface AlbumDetails

AlbumDetails ($ref: "AudioLibrary.AlbumDetails") Represents the details of an album.

interface AlbumDetails {
    albumid: string;
    artistid: number;
    genre: string;
    title: string;
    year: number;
}

Properties

albumid: string
artistid: number
genre: string
title: string
year: number