File tree Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -66,6 +66,14 @@ class Recipient {
66
66
* @Type("string")
67
67
*/
68
68
private $ language = 'en ' ;
69
+
70
+ /**
71
+ * This parameter can be used to specify a custom message (upon document delivery) for the current recipient.
72
+ * Please note that for the current recipient the general document message will be overriden by this parameter.
73
+ * @var string $message
74
+ * @Type("string")
75
+ */
76
+ private $ message ;
69
77
70
78
public function getName () {
71
79
return $ this ->name ;
@@ -101,5 +109,13 @@ public function setLanguage($language) {
101
109
}
102
110
$ this ->language = $ language ;
103
111
}
112
+
113
+ public function getMessage () {
114
+ return $ this ->message ;
115
+ }
116
+
117
+ public function setMessage ($ message ) {
118
+ $ this ->message = $ message ;
119
+ }
104
120
105
121
}
You can’t perform that action at this time.
0 commit comments