boldsign
Version:
NodeJS client for boldsign
86 lines • 2.13 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.RecipientNotificationSettings = void 0;
class RecipientNotificationSettings {
constructor() {
this['signatureRequest'] = true;
this['declined'] = true;
this['revoked'] = true;
this['signed'] = true;
this['completed'] = true;
this['expired'] = true;
this['reassigned'] = true;
this['deleted'] = true;
this['reminders'] = true;
this['editRecipient'] = true;
this['editDocument'] = true;
}
static getAttributeTypeMap() {
return RecipientNotificationSettings.attributeTypeMap;
}
}
exports.RecipientNotificationSettings = RecipientNotificationSettings;
RecipientNotificationSettings.discriminator = undefined;
RecipientNotificationSettings.attributeTypeMap = [
{
"name": "signatureRequest",
"baseName": "signatureRequest",
"type": "boolean"
},
{
"name": "declined",
"baseName": "declined",
"type": "boolean"
},
{
"name": "revoked",
"baseName": "revoked",
"type": "boolean"
},
{
"name": "signed",
"baseName": "signed",
"type": "boolean"
},
{
"name": "completed",
"baseName": "completed",
"type": "boolean"
},
{
"name": "expired",
"baseName": "expired",
"type": "boolean"
},
{
"name": "reassigned",
"baseName": "reassigned",
"type": "boolean"
},
{
"name": "deleted",
"baseName": "deleted",
"type": "boolean"
},
{
"name": "reminders",
"baseName": "reminders",
"type": "boolean"
},
{
"name": "editRecipient",
"baseName": "editRecipient",
"type": "boolean"
},
{
"name": "editDocument",
"baseName": "editDocument",
"type": "boolean"
},
{
"name": "viewed",
"baseName": "viewed",
"type": "boolean"
}
];
//# sourceMappingURL=recipientNotificationSettings.js.map