All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.schema.BookSeries Maven / Gradle / Ivy

There is a newer version: 3.1.8
Show newest version
package org.schema;

/**
 * Schema.org/BookSeries
 * A series of books. Included books can be indicated with the hasPart property.
 *
 * @author schema.org
 * @class BookSeries
 * @module org.schema
 * @extends CreativeWorkSeries
 */
public class BookSeries extends CreativeWorkSeries {
	/**
	 * Constructor, automatically sets @context and @type.
	 *
	 * @constructor
	 */
	public BookSeries() {
		context = "http://schema.org/";
		type = "BookSeries";
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy