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