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

org.schema.RsvpAction Maven / Gradle / Ivy

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

/**
 * Schema.org/RsvpAction
 * The act of notifying an event organizer as to whether you expect to attend the event.
 *
 * @author schema.org
 * @class RsvpAction
 * @module org.schema
 * @extends InformAction
 */
public class RsvpAction extends InformAction {
	/**
	 * Schema.org/additionalNumberOfGuests
	 * If responding yes, the number of guests who will attend in addition to the invitee.
	 *
	 * @property additionalNumberOfGuests
	 * @type Number
	 */
	public Double additionalNumberOfGuests;
	/**
	 * Schema.org/comment
	 * Comments, typically from users.
	 *
	 * @property comment
	 * @type Comment
	 */
	public Comment comment;
	/**
	 * Schema.org/rsvpResponse
	 * The response (yes, no, maybe) to the RSVP.
	 *
	 * @property rsvpResponse
	 * @type RsvpResponseType
	 */
	public RsvpResponseType rsvpResponse;

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy