org.schema.SendAction Maven / Gradle / Ivy
package org.schema;
/**
* Schema.org/SendAction
* The act of physically/electronically dispatching an object for transfer from an origin to a destination.Related actions:\n\n* [[ReceiveAction]]: The reciprocal of SendAction.\n* [[GiveAction]]: Unlike GiveAction, SendAction does not imply the transfer of ownership (e.g. I can send you my laptop, but I'm not necessarily giving it to you).
*
* @author schema.org
* @class SendAction
* @module org.schema
* @extends TransferAction
*/
public class SendAction extends TransferAction {
/**
* 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;
/**
* Schema.org/deliveryMethod
* A sub property of instrument. The method of delivery.
*
* @property deliveryMethod
* @type DeliveryMethod
*/
public DeliveryMethod deliveryMethod;
/**
* Constructor, automatically sets @context and @type.
*
* @constructor
*/
public SendAction() {
context = "http://schema.org/";
type = "SendAction";
}
}