Table of Contents

Class NotificationSettings

Namespace
BoldSign.Model
Assembly
BoldSign.Api.dll

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 bool

Gets or sets the document viewed..

sent bool

Gets or sets the document send..

deliveryFailed bool

Gets or sets the email delivery failed..

signed bool

Gets or sets the document signed..

declined bool

Gets or sets the decline document..

revoked bool

Gets or sets the revoke document..

reassigned bool

Gets or sets the reassign document..

completed bool

Gets or sets the complete document..

expired bool

Gets or sets the document expired..

authenticationFailed bool

Gets or sets the authentication failed..

reminders bool

Gets 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

bool

Completed

Gets or sets a value indicating whether complete document.

[DataMember(Name = "completed", EmitDefaultValue = true)]
public bool Completed { get; set; }

Property Value

bool

Declined

Gets or sets a value indicating whether decline document.

[DataMember(Name = "declined", EmitDefaultValue = true)]
public bool Declined { get; set; }

Property Value

bool

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

bool

Expired

Gets or sets a value indicating whether document expired.

[DataMember(Name = "expired", EmitDefaultValue = true)]
public bool Expired { get; set; }

Property Value

bool

Reassigned

Gets or sets a value indicating whether reassign document.

[DataMember(Name = "reassigned", EmitDefaultValue = true)]
public bool Reassigned { get; set; }

Property Value

bool

Reminders

Gets or sets a value indicating whether sender reminder.

[DataMember(Name = "Reminders", EmitDefaultValue = true)]
public bool Reminders { get; set; }

Property Value

bool

Revoked

Gets or sets a value indicating whether revoke document.

[DataMember(Name = "revoked", EmitDefaultValue = true)]
public bool Revoked { get; set; }

Property Value

bool

Sent

Gets or sets a value indicating whether document send.

[DataMember(Name = "sent", EmitDefaultValue = true)]
public bool Sent { get; set; }

Property Value

bool

Signed

Gets or sets a value indicating whether sign document.

[DataMember(Name = "signed", EmitDefaultValue = true)]
public bool Signed { get; set; }

Property Value

bool

Viewed

Gets or sets a value indicating whether document viewed.

[DataMember(Name = "viewed", EmitDefaultValue = true)]
public bool Viewed { get; set; }

Property Value

bool