org.schema.BikeStore Maven / Gradle / Ivy
package org.schema;
/**
* Schema.org/BikeStore
* A bike store.
*
* @author schema.org
* @class BikeStore
* @module org.schema
* @extends Store
*/
public class BikeStore extends Store {
/**
* Constructor, automatically sets @context and @type.
*
* @constructor
*/
public BikeStore() {
context = "http://schema.org/";
type = "BikeStore";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy