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

org.schema.FlightReservation Maven / Gradle / Ivy

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

/**
 * Schema.org/FlightReservation
 * A reservation for air travel.\n\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use [[Offer]].
 *
 * @author schema.org
 * @class FlightReservation
 * @module org.schema
 * @extends Reservation
 */
public class FlightReservation extends Reservation {
	/**
	 * Schema.org/passengerSequenceNumber
	 * The passenger's sequence number as assigned by the airline.
	 *
	 * @property passengerSequenceNumber
	 * @type Text
	 */
	public String passengerSequenceNumber;
	/**
	 * Schema.org/securityScreening
	 * The type of security screening the passenger is subject to.
	 *
	 * @property securityScreening
	 * @type Text
	 */
	public String securityScreening;
	/**
	 * Schema.org/passengerPriorityStatus
	 * The priority status assigned to a passenger for security or boarding (e.g. FastTrack or Priority).
	 *
	 * @property passengerPriorityStatus
	 * @type QualitativeValue
	 */
	public QualitativeValue passengerPriorityStatus;
	/**
	 * Schema.org/boardingGroup
	 * The airline-specific indicator of boarding order / preference.
	 *
	 * @property boardingGroup
	 * @type Text
	 */
	public String boardingGroup;

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy