JOptOptimizationError model for the documentation
| Name | Type | Description | Notes |
|---|---|---|---|
| creator | str | An id related to the creator that is filled out autmatically | [optional] |
| job_id | str | The jobId id. Will be filled out by the optimizer, if necessary | |
| tenant_id | str | The tenant id of the creator started this job. | |
| ident | str | The ident of the currently running optimization | |
| message | str | The info message | |
| code | int | The info message code | |
| desc | str | The description of the info | |
| expire_at | datetime | Optional value that will be used for database cleanup purposes. | [optional] |
from touroptimizer_py_client.models.j_opt_optimization_error import JOptOptimizationError
# TODO update the JSON string below
json = "{}"
# create an instance of JOptOptimizationError from a JSON string
j_opt_optimization_error_instance = JOptOptimizationError.from_json(json)
# print the JSON string representation of the object
print(JOptOptimizationError.to_json())
# convert the object into a dict
j_opt_optimization_error_dict = j_opt_optimization_error_instance.to_dict()
# create an instance of JOptOptimizationError from a dict
j_opt_optimization_error_from_dict = JOptOptimizationError.from_dict(j_opt_optimization_error_dict)