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

org.schema.IndividualProduct Maven / Gradle / Ivy

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

/**
 * Schema.org/IndividualProduct
 * A single, identifiable product instance (e.g. a laptop with a particular serial number).
 *
 * @author schema.org
 * @class IndividualProduct
 * @module org.schema
 * @extends Product
 */
public class IndividualProduct extends Product {
	/**
	 * Schema.org/serialNumber
	 * The serial number or any alphanumeric identifier of a particular product. When attached to an offer, it is a shortcut for the serial number of the product included in the offer.
	 *
	 * @property serialNumber
	 * @type Text
	 */
	public String serialNumber;

	/**
	 * Constructor, automatically sets @context and @type.
	 *
	 * @constructor
	 */
	public IndividualProduct() {
		context = "http://schema.org/";
		type = "IndividualProduct";
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy