Skip to content

Commit

Permalink
Merge pull request #27 from clemcoder/patch-2
Browse files Browse the repository at this point in the history
Custom recipient message
  • Loading branch information
archivelm authored Sep 24, 2020
2 parents 10dc018 + be829fb commit bd58d18
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions sdk/Eversign/Recipient.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -101,5 +109,13 @@ public function setLanguage($language) {
}
$this->language = $language;
}

public function getMessage() {
return $this->message;
}

public function setMessage($message) {
$this->message = $message;
}

}

0 comments on commit bd58d18

Please sign in to comment.