org.schema.BedAndBreakfast Maven / Gradle / Ivy
package org.schema;
/**
* Schema.org/BedAndBreakfast
* Bed and breakfast.
*
* See also the dedicated document on the use of schema.org for marking up hotels and other forms of accommodations.
*
* @author schema.org
* @class BedAndBreakfast
* @module org.schema
* @extends LodgingBusiness
*/
public class BedAndBreakfast extends LodgingBusiness {
/**
* Constructor, automatically sets @context and @type.
*
* @constructor
*/
public BedAndBreakfast() {
context = "http://schema.org/";
type = "BedAndBreakfast";
}
}