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
viewed
boolGets or sets the document viewed..
sent
boolGets or sets the document send..
deliveryFailed
boolGets or sets the email delivery failed..
signed
boolGets or sets the document signed..
declined
boolGets or sets the decline document..
revoked
boolGets or sets the revoke document..
reassigned
boolGets or sets the reassign document..
completed
boolGets or sets the complete document..
expired
boolGets or sets the document expired..
authenticationFailed
boolGets or sets the authentication failed..
reminders
boolGets or sets the sender reminder..
Properties
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; }