org.schema.LegislativeBuilding Maven / Gradle / Ivy
package org.schema;
/**
* Schema.org/LegislativeBuilding
* A legislative building—for example, the state capitol.
*
* @author schema.org
* @class LegislativeBuilding
* @module org.schema
* @extends GovernmentBuilding
*/
public class LegislativeBuilding extends GovernmentBuilding {
/**
* Constructor, automatically sets @context and @type.
*
* @constructor
*/
public LegislativeBuilding() {
context = "http://schema.org/";
type = "LegislativeBuilding";
}
}