org.schema.GovernmentOffice Maven / Gradle / Ivy
package org.schema;
/**
* Schema.org/GovernmentOffice
* A government office—for example, an IRS or DMV office.
*
* @author schema.org
* @class GovernmentOffice
* @module org.schema
* @extends LocalBusiness
*/
public class GovernmentOffice extends LocalBusiness {
/**
* Constructor, automatically sets @context and @type.
*
* @constructor
*/
public GovernmentOffice() {
context = "http://schema.org/";
type = "GovernmentOffice";
}
}