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

org.schema.MovieTheater Maven / Gradle / Ivy

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

/**
 * Schema.org/MovieTheater
 * A movie theater.
 *
 * @author schema.org
 * @class MovieTheater
 * @module org.schema
 * @extends CivicStructure
 */
public class MovieTheater extends CivicStructure {
	/**
	 * Schema.org/screenCount
	 * The number of screens in the movie theater.
	 *
	 * @property screenCount
	 * @type Number
	 */
	public Double screenCount;

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy