You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/Signer.js
+85-5Lines changed: 85 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -91,14 +91,49 @@ function Signer(newSigner = {}) {
91
91
*/
92
92
status: undefined,
93
93
94
-
95
94
/**
96
95
* the embedded/iframe signing url
97
96
*
98
97
* @var {Date} embeddedSigningUrl
99
98
* @type {Date}
100
99
*/
101
100
embeddedSigningUrl: undefined,
101
+
102
+
/**
103
+
* This parameter is only applicable if embedded_signing_enabled is set to 1.
104
+
* When this parameter is set, embedded document signers will be notified by email.
105
+
*
106
+
* @type {Boolean}
107
+
*/
108
+
deliverEmail: undefined,
109
+
110
+
/**
111
+
* This parameter is used to specify if signer authentication by SMS is enabled.
112
+
*
113
+
* @type {Boolean}
114
+
*/
115
+
signerAuthenticationSmsEnabled: undefined,
116
+
117
+
/**
118
+
* If signer authentication by SMS is enabled, this parameter is used to specify the phone number to which SMS validation will be delivered. ITU call prefix can start both with 00 or + sign.
119
+
*
120
+
* @type {String}
121
+
*/
122
+
signerAuthenticationPhoneNumber: undefined,
123
+
124
+
/**
125
+
* This parameter can be used to specify a custom message (upon document delivery) for the current signer. Please note that for the current signer the general document message will be overriden by this parameter.
126
+
*
127
+
* @type {String}
128
+
*/
129
+
message: undefined,
130
+
131
+
/**
132
+
* This parameter is used to specify the language in which signing notifications (emails), the document status page and the signature process will appear for this signer.
133
+
*
134
+
* @type {String}
135
+
*/
136
+
language: undefined,
102
137
};
103
138
104
139
Object.assign(signer,newSigner);
@@ -143,6 +178,31 @@ function Signer(newSigner = {}) {
0 commit comments