Class DocumentExpirySettings
The Document Expiry Settings.
[DataContract]
public class DocumentExpirySettings
- Inheritance
-
DocumentExpirySettings
- Inherited Members
Properties
EnableAutoReminder
Gets or sets a value indicating whether gets or sets the enable auto reminder.
[DataMember(Name = "enableAutoReminder", EmitDefaultValue = true)]
public bool? EnableAutoReminder { get; set; }
Property Value
- bool?
EnableDefaultExpiryAlert
Gets or sets a value indicating whether gets or sets the enable default expiry alert.
[DataMember(Name = "enableDefaultExpiryAlert", EmitDefaultValue = true)]
public bool? EnableDefaultExpiryAlert { get; set; }
Property Value
- bool?
ExpiryDateType
Gets or sets the expiry date type.
[DataMember(Name = "expiryDateType", EmitDefaultValue = true)]
[EnumDataType(typeof(ExpiryDateType))]
public ExpiryDateType? ExpiryDateType { get; set; }
Property Value
ExpiryValue
Gets or sets the expiry value based on expiry date type.
[DataMember(Name = "expiryValue", EmitDefaultValue = true)]
public int? ExpiryValue { get; set; }
Property Value
- int?
ReminderCount
Gets or sets the reminder count.
[DataMember(Name = "reminderCount", EmitDefaultValue = true)]
public int? ReminderCount { get; set; }
Property Value
- int?
ReminderDays
Gets or sets the reminder days.
[DataMember(Name = "reminderDays", EmitDefaultValue = true)]
public int? ReminderDays { get; set; }
Property Value
- int?