Name | Type | Description | Notes |
---|---|---|---|
auto_budgets | CronResultRow | [optional] | |
recurring_transactions | CronResultRow | [optional] | |
telemetry | CronResultRow | [optional] |
from firefly_iii_client.models.cron_result import CronResult
# TODO update the JSON string below
json = "{}"
# create an instance of CronResult from a JSON string
cron_result_instance = CronResult.from_json(json)
# print the JSON string representation of the object
print(CronResult.to_json())
# convert the object into a dict
cron_result_dict = cron_result_instance.to_dict()
# create an instance of CronResult from a dict
cron_result_form_dict = cron_result.from_dict(cron_result_dict)