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

org.schema.TVClip Maven / Gradle / Ivy

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

/**
 * Schema.org/TVClip
 * A short TV program or a segment/part of a TV program.
 *
 * @author schema.org
 * @class TVClip
 * @module org.schema
 * @extends Clip
 */
public class TVClip extends Clip {
	/**
	 * Schema.org/partOfTVSeries
	 * The TV series to which this episode or season belongs.
	 *
	 * @property partOfTVSeries
	 * @type TVSeries
	 */
	public TVSeries partOfTVSeries;

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy