Skip to content

Latest commit

 

History

History
executable file
·
30 lines (21 loc) · 1007 Bytes

JobResidualData.md

File metadata and controls

executable file
·
30 lines (21 loc) · 1007 Bytes

JobResidualData

Properties

Name Type Description Notes
variable_name str Name of the variable. [optional] [readonly]
values List[str] The residual values [optional]

Example

from epiccore.models.job_residual_data import JobResidualData

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

# convert the object into a dict
job_residual_data_dict = job_residual_data_instance.to_dict()
# create an instance of JobResidualData from a dict
job_residual_data_form_dict = job_residual_data.from_dict(job_residual_data_dict)

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