org.schema.MovieTheater Maven / Gradle / Ivy
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 - 2025 Weber Informatics LLC | Privacy Policy