org.schema.Physician Maven / Gradle / Ivy
package org.schema;
/**
* Schema.org/Physician
* A doctor's office.
*
* @author schema.org
* @class Physician
* @module org.schema
* @extends MedicalOrganization
*/
public class Physician extends MedicalOrganization {
/**
* Constructor, automatically sets @context and @type.
*
* @constructor
*/
public Physician() {
context = "http://schema.org/";
type = "Physician";
}
}