Note
| Property | Type | Description | Information |
|---|---|---|---|
id | int | Identifier | Unique for single note. |
noteable_type | string | Model of noteable | -- |
noteable_id | int | ID of noteable model | -- |
text | string | Text of note | -- |
user_id | int | Author's user ID | -- |
created_at | date | Note creation date | Date of Note creation. |
updated_at | date | Note latest update date | Date of Note latest update. |
Example:
{
"id": 1,
"noteable_type": "App\\Containers\\Clients\\Clients\\Models\\Client",
"noteable_id": 1,
"text": "text poznamky",
"user_id": 1,
"created_at": "2023-01-05T15:57:14+0100",
"updated_at": "2023-01-05T15:57:44+0100"
}