ChaseScheduleDto
The automatic-chase schedule for something the practice is waiting on a client for —
a document approval, a document request, a data form, a workflow step.
Shared by every DTO that can be chased so the three fields keep one shape and one meaning.
Always present; a null SodiumHQ.DTOs.Base.ChaseScheduleDto.FrequencyDays means chasing is off for this item, in
which case there is no next chase either.
Properties
| Name | Type | Description |
|---|---|---|
| frequencyDays | integer | How often (in days) the client is chased. Null means chasing is disabled. |
How often (in days) the client is chased. Null means chasing is disabled. | ||
| lastChasedDate | string | When the client was last chased. Null if never chased. |
When the client was last chased. Null if never chased. | ||
| nextChaseDate | string | When the next chase is due. Null when chasing is off or nothing is outstanding. |
When the next chase is due. Null when chasing is off or nothing is outstanding. | ||
JSON Example
{
"frequencyDays": 0,
"lastChasedDate": "2024-01-01T00:00:00Z",
"nextChaseDate": "2024-01-01T00:00:00Z"
}
Contained in Schemas
- ClientDocumentApprovalDto The client's sign-off on a document: whether it was asked for, how it was asked for, who answered an...
- DataFormRequestDto A form request sent to a client
- DocumentApprovalBatchDto A group of client documents sent for approval together and decided with a single approve or reject a...
- DocumentRequestDetailDto Detailed response DTO for a document request, including documents and responses
- DocumentRequestDto Response DTO for a document request
- WorkflowStepProgressDto Represents the progress of a single workflow step within a TaskItem. Contains both the step template...