API Docs / Schemas / ChaseScheduleDto

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
frequencyDaysinteger

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.

lastChasedDatestring

When the client was last chased. Null if never chased.

When the client was last chased. Null if never chased.

nextChaseDatestring

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