Class NotificationSettings
The sender identity view model.
[DataContract]
public class NotificationSettings
- Inheritance
-
NotificationSettings
- Inherited Members
Constructors
NotificationSettings(bool, bool, bool, bool, bool, bool, bool, bool, bool, bool, bool)
Initializes a new instance of the NotificationSettings class.
public NotificationSettings(bool viewed = true, bool sent = false, bool deliveryFailed = true, bool signed = true, bool declined = true, bool revoked = true, bool reassigned = true, bool completed = true, bool expired = true, bool authenticationFailed = true, bool reminders = true)
Parameters
viewedboolGets or sets the document viewed..
sentboolGets or sets the document send..
deliveryFailedboolGets or sets the email delivery failed..
signedboolGets or sets the document signed..
declinedboolGets or sets the decline document..
revokedboolGets or sets the revoke document..
reassignedboolGets or sets the reassign document..
completedboolGets or sets the complete document..
expiredboolGets or sets the document expired..
authenticationFailedboolGets or sets the authentication failed..
remindersboolGets or sets the sender reminder..
Properties
AttachSignedDocument
Gets or sets a value indicating whether signed documents are included with sign completion for sender identity.
[DataMember(Name = "attachSignedDocument", EmitDefaultValue = true)]
public bool AttachSignedDocument { get; set; }
Property Value
AuthenticationFailed
Gets or sets a value indicating whether authentication failed.
[DataMember(Name = "authenticationFailed", EmitDefaultValue = true)]
public bool AuthenticationFailed { get; set; }
Property Value
Completed
Gets or sets a value indicating whether complete document.
[DataMember(Name = "completed", EmitDefaultValue = true)]
public bool Completed { get; set; }
Property Value
Declined
Gets or sets a value indicating whether decline document.
[DataMember(Name = "declined", EmitDefaultValue = true)]
public bool Declined { get; set; }
Property Value
DeliveryFailedFor
Gets or sets a value indicating whether email delivery failed for signer.
[DataMember(Name = "deliveryFailed", EmitDefaultValue = true)]
public bool DeliveryFailedFor { get; set; }
Property Value
Expired
Gets or sets a value indicating whether document expired.
[DataMember(Name = "expired", EmitDefaultValue = true)]
public bool Expired { get; set; }
Property Value
Reassigned
Gets or sets a value indicating whether reassign document.
[DataMember(Name = "reassigned", EmitDefaultValue = true)]
public bool Reassigned { get; set; }
Property Value
Reminders
Gets or sets a value indicating whether sender reminder.
[DataMember(Name = "reminders", EmitDefaultValue = true)]
public bool Reminders { get; set; }
Property Value
Revoked
Gets or sets a value indicating whether revoke document.
[DataMember(Name = "revoked", EmitDefaultValue = true)]
public bool Revoked { get; set; }
Property Value
Sent
Gets or sets a value indicating whether document send.
[DataMember(Name = "sent", EmitDefaultValue = true)]
public bool Sent { get; set; }
Property Value
Signed
Gets or sets a value indicating whether sign document.
[DataMember(Name = "signed", EmitDefaultValue = true)]
public bool Signed { get; set; }
Property Value
Viewed
Gets or sets a value indicating whether document viewed.
[DataMember(Name = "viewed", EmitDefaultValue = true)]
public bool Viewed { get; set; }