go-firefly3/docs/CronResultRow.md
2024-05-11 14:45:50 +03:00

13 lines
982 B
Markdown

# CronResultRow
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**JobFired** | **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] [default to null]
**JobSucceeded** | **bool** | This value tells you if this specific cron job actually did something. The job may fire but not change anything. | [optional] [default to null]
**JobErrored** | **bool** | If the cron job ran into some kind of an error, this value will be true. | [optional] [default to null]
**Message** | **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] [default to null]
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)