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

org.schema.DeliveryEvent Maven / Gradle / Ivy

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

/**
 * Schema.org/DeliveryEvent
 * An event involving the delivery of an item.
 *
 * @author schema.org
 * @class DeliveryEvent
 * @module org.schema
 * @extends Event
 */
public class DeliveryEvent extends Event {
	/**
	 * Schema.org/hasDeliveryMethod
	 * Method used for delivery or shipping.
	 *
	 * @property hasDeliveryMethod
	 * @type DeliveryMethod
	 */
	public DeliveryMethod hasDeliveryMethod;
	/**
	 * Schema.org/availableThrough
	 * After this date, the item will no longer be available for pickup.
	 *
	 * @property availableThrough
	 * @type DateTime
	 */
	public String availableThrough;
	/**
	 * Schema.org/availableFrom
	 * When the item is available for pickup from the store, locker, etc.
	 *
	 * @property availableFrom
	 * @type DateTime
	 */
	public String availableFrom;
	/**
	 * Schema.org/accessCode
	 * Password, PIN, or access code needed for delivery (e.g. from a locker).
	 *
	 * @property accessCode
	 * @type Text
	 */
	public String accessCode;

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy