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

org.schema.LendAction Maven / Gradle / Ivy

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

/**
 * Schema.org/LendAction
 * The act of providing an object under an agreement that it will be returned at a later date. Reciprocal of BorrowAction.\n\nRelated actions:\n\n* [[BorrowAction]]: Reciprocal of LendAction.
 *
 * @author schema.org
 * @class LendAction
 * @module org.schema
 * @extends TransferAction
 */
public class LendAction extends TransferAction {
	/**
	 * Schema.org/borrower
	 * A sub property of participant. The person that borrows the object being lent.
	 *
	 * @property borrower
	 * @type Person
	 */
	public Person borrower;

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy