Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.59 KB

File metadata and controls

37 lines (28 loc) · 1.59 KB

JOptOptimizationWarning

JOptOptimizationWarning model for the documentation

Properties

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]

Example

from touroptimizer_py_client.models.j_opt_optimization_warning import JOptOptimizationWarning

# TODO update the JSON string below
json = "{}"
# create an instance of JOptOptimizationWarning from a JSON string
j_opt_optimization_warning_instance = JOptOptimizationWarning.from_json(json)
# print the JSON string representation of the object
print(JOptOptimizationWarning.to_json())

# convert the object into a dict
j_opt_optimization_warning_dict = j_opt_optimization_warning_instance.to_dict()
# create an instance of JOptOptimizationWarning from a dict
j_opt_optimization_warning_from_dict = JOptOptimizationWarning.from_dict(j_opt_optimization_warning_dict)

[Back to Model list] [Back to API list] [Back to README]