![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mcoil.corals.io/vendor/paypal/rest-api-sdk-php/lib/PayPal/Api/ |
<?php namespace PayPal\Api; use PayPal\Common\PayPalModel; /** * Class Notification * * Email/SMS notification. * * @package PayPal\Api * * @property string subject * @property string note * @property bool send_to_merchant */ class Notification extends PayPalModel { /** * Subject of the notification. * * @param string $subject * * @return $this */ public function setSubject($subject) { $this->subject = $subject; return $this; } /** * Subject of the notification. * * @return string */ public function getSubject() { return $this->subject; } /** * Note to the payer. * * @param string $note * * @return $this */ public function setNote($note) { $this->note = $note; return $this; } /** * Note to the payer. * * @return string */ public function getNote() { return $this->note; } /** * A flag indicating whether a copy of the email has to be sent to the merchant. * * @param bool $send_to_merchant * * @return $this */ public function setSendToMerchant($send_to_merchant) { $this->send_to_merchant = $send_to_merchant; return $this; } /** * A flag indicating whether a copy of the email has to be sent to the merchant. * * @return bool */ public function getSendToMerchant() { return $this->send_to_merchant; } }