Initial commit

This is definitely not functional yet.

Signed-off-by: Jacob Kiers <code@kiers.eu>
This commit is contained in:
2024-10-04 20:27:23 +02:00
commit f0b8df90b9
582 changed files with 43994 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
# CronResultRow
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**job_fired** | Option<**bool**> | This value tells you if this specific cron job actually fired. It may not fire. Some cron jobs only fire every 24 hours, for example. | [optional]
**job_succeeded** | Option<**bool**> | This value tells you if this specific cron job actually did something. The job may fire but not change anything. | [optional]
**job_errored** | Option<**bool**> | If the cron job ran into some kind of an error, this value will be true. | [optional]
**message** | Option<**String**> | If the cron job ran into some kind of an error, this value will be the error message. The success message if the job actually ran OK. | [optional]
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)