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

org.schema.PayAction Maven / Gradle / Ivy

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

/**
 * Schema.org/PayAction
 * An agent pays a price to a participant.
 *
 * @author schema.org
 * @class PayAction
 * @module org.schema
 * @extends TradeAction
 */
public class PayAction extends TradeAction {
	/**
	 * Schema.org/recipient
	 * A sub property of participant. The participant who is at the receiving end of the action.
	 *
	 * @property recipient
	 * @type Organization
	 */
	public Organization recipient;

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy