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

org.schema.BusTrip Maven / Gradle / Ivy

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

/**
 * Schema.org/BusTrip
 * A trip on a commercial bus line.
 *
 * @author schema.org
 * @class BusTrip
 * @module org.schema
 * @extends Intangible
 */
public class BusTrip extends Intangible {
	/**
	 * Schema.org/provider
	 * The service provider, service operator, or service performer; the goods producer. Another party (a seller) may offer those services or goods on behalf of the provider. A provider may also serve as the seller.
	 *
	 * @property provider
	 * @type Person
	 */
	public Person provider;
	/**
	 * Schema.org/busName
	 * The name of the bus (e.g. Bolt Express).
	 *
	 * @property busName
	 * @type Text
	 */
	public String busName;
	/**
	 * Schema.org/departureBusStop
	 * The stop or station from which the bus departs.
	 *
	 * @property departureBusStop
	 * @type BusStop
	 */
	public BusStop departureBusStop;
	/**
	 * Schema.org/arrivalBusStop
	 * The stop or station from which the bus arrives.
	 *
	 * @property arrivalBusStop
	 * @type BusStation
	 */
	public BusStation arrivalBusStop;
	/**
	 * Schema.org/arrivalTime
	 * The expected arrival time.
	 *
	 * @property arrivalTime
	 * @type DateTime
	 */
	public String arrivalTime;
	/**
	 * Schema.org/busNumber
	 * The unique identifier for the bus.
	 *
	 * @property busNumber
	 * @type Text
	 */
	public String busNumber;
	/**
	 * Schema.org/departureTime
	 * The expected departure time.
	 *
	 * @property departureTime
	 * @type DateTime
	 */
	public String departureTime;

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy