From be829fb2a37d7864c642ea547d730a2e09b4c688 Mon Sep 17 00:00:00 2001 From: clemcoder <64213547+clemcoder@users.noreply.github.com> Date: Fri, 24 Apr 2020 10:41:15 +0200 Subject: [PATCH] Custom recipient message Add message parameter to recipient in order to specify a custom message (upon document delivery) for the current recipient. For the current recipient the general document message will be overriden by this parameter. --- sdk/Eversign/Recipient.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/sdk/Eversign/Recipient.php b/sdk/Eversign/Recipient.php index ef224a5..9230fb5 100644 --- a/sdk/Eversign/Recipient.php +++ b/sdk/Eversign/Recipient.php @@ -66,6 +66,14 @@ class Recipient { * @Type("string") */ private $language = 'en'; + + /** + * This parameter can be used to specify a custom message (upon document delivery) for the current recipient. + * Please note that for the current recipient the general document message will be overriden by this parameter. + * @var string $message + * @Type("string") + */ + private $message; public function getName() { return $this->name; @@ -101,5 +109,13 @@ public function setLanguage($language) { } $this->language = $language; } + + public function getMessage() { + return $this->message; + } + + public function setMessage($message) { + $this->message = $message; + } }