We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7084105 + 0cfad35 commit d764d6cCopy full SHA for d764d6c
1 file changed
lib/Document.js
@@ -70,11 +70,11 @@ function Document(newDocument = {}) {
70
isTrashed: undefined,
71
72
/**
73
- * Check if the document has been canceled.
74
- * @var {Boolean} isCanceled
+ * Check if the document has been cancelled.
+ * @var {Boolean} isCancelled
75
* @type {Boolean}
76
*/
77
- isCanceled: undefined,
+ isCancelled: undefined,
78
79
80
*
@@ -390,8 +390,9 @@ function Document(newDocument = {}) {
390
return document.isCompleted;
391
};
392
393
- this.getIsCanceled = function () {
394
- return document.isCanceled;
+ // UK Spelling. Check ApiDoc: https://eversign.com/api/documentation/methods#get-document-template
+ this.getIsCancelled = function () {
395
+ return document.isCancelled;
396
397
398
this.getIsDeleted = function () {
0 commit comments