All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.schema.MusicPlaylist Maven / Gradle / Ivy

There is a newer version: 3.1.8
Show newest version
package org.schema;

/**
 * Schema.org/MusicPlaylist
 * A collection of music tracks in playlist form.
 *
 * @author schema.org
 * @class MusicPlaylist
 * @module org.schema
 * @extends CreativeWork
 */
public class MusicPlaylist extends CreativeWork {
	/**
	 * Schema.org/track
	 * A music recording (track)—usually a single song. If an ItemList is given, the list should contain items of type MusicRecording.
	 *
	 * @property track
	 * @type MusicRecording
	 */
	public MusicRecording track;
	/**
	 * Schema.org/numTracks
	 * The number of tracks in this album or playlist.
	 *
	 * @property numTracks
	 * @type Integer
	 */
	public Integer numTracks;
	/**
	 * Schema.org/tracks
	 * A music recording (track)—usually a single song.
	 *
	 * @property tracks
	 * @type MusicRecording
	 */
	public MusicRecording tracks;

	/**
	 * Constructor, automatically sets @context and @type.
	 *
	 * @constructor
	 */
	public MusicPlaylist() {
		context = "http://schema.org/";
		type = "MusicPlaylist";
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy