Class ReminderSettings
The reminder settings have properties include enabling auto reminder, reminder recurring count, and so on.
Inheritance
System.Object
ReminderSettings
Namespace: BoldSign.Model
Assembly: BoldSign.Api.dll
Syntax
public class ReminderSettings : object
Constructors
| Improve this Doc View SourceReminderSettings(Nullable<Int32>, Nullable<Int32>)
Initializes a new instance of the ReminderSettings class.
Declaration
public ReminderSettings(int? reminderDays, int? reminderCount)
Parameters
Type | Name | Description |
---|---|---|
System.Nullable<System.Int32> | reminderDays | Gets or sets the reminder days. (default to 3). |
System.Nullable<System.Int32> | reminderCount | Gets or sets the reminder count. (default to 3). |
Properties
| Improve this Doc View SourceEnableAutoReminder
Gets or sets a value indicating whether to enable auto reminder.
Declaration
public bool? EnableAutoReminder { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Boolean> | Gets or sets a value indicating whether enable auto reminder. |
ReminderCount
Gets or sets the reminder recurring count.
Declaration
public int? ReminderCount { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int32> | Gets or sets the reminder count. |
ReminderDays
Gets or sets the reminder in number of days.
Declaration
public int? ReminderDays { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int32> | Gets or sets the reminder days. |
Methods
| Improve this Doc View SourceToJson()
Returns the JSON string presentation of the object
Declaration
public virtual string ToJson()
Returns
Type | Description |
---|---|
System.String | JSON string presentation of the object |