ClientNoteDto
Response DTO for client note information
Properties
| Name | Type | Description |
|---|---|---|
| code | string | The unique code for this note |
The unique code for this note | ||
| text | string | The note text |
The note text | ||
| date | string | The date/time of the note |
The date/time of the note | ||
| noteFromUser | CodeAndNameDto | |
| pinnedLevel | integer | The pinned level for ordering pinned notes |
The pinned level for ordering pinned notes | ||
| createdDate | string | When the note was created |
When the note was created | ||
| updatedDate | string | When the note was last updated |
When the note was last updated | ||
JSON Example
{
"code": "string",
"text": "string",
"date": "2024-01-01T00:00:00Z",
"noteFromUser": {
"code": "string",
"name": "string"
},
"pinnedLevel": 0
}