DocumentRequestResponseDto
Response DTO for a document request submission/response
Properties
| Name | Type | Description |
|---|---|---|
| code | string | Unique code for this response |
Unique code for this response | ||
| comments | string | Comments provided with the submission |
Comments provided with the submission | ||
| submittedByUser | CodeAndNameDto | |
| submittedByContact | CodeAndNameDto | |
| submittedDate | string | When this response was submitted |
When this response was submitted | ||
| reviewedByUser | CodeAndNameDto | |
| reviewedDate | string | When this response was reviewed |
When this response was reviewed | ||
| reviewStatus | enum | Pending Accepted Rejected |
Pending Accepted Rejected | ||
| reviewNote | string | Note provided by the reviewer |
Note provided by the reviewer | ||
| createdDate | string | When this response was created |
When this response was created | ||
JSON Example
{
"code": "string",
"comments": "string",
"submittedByUser": {
"code": "string",
"name": "string"
},
"submittedByContact": {
"code": "string",
"name": "string"
},
"submittedDate": "2024-01-01T00:00:00Z"
}