Table of Contents

CheckResSummary

Properties

Name Type Description Notes
check_value float [optional]
check_status bool [optional]
load_case_id int [optional]
name str [optional]
unity_check_message str [optional]
skipped bool [optional]

Example

from ideastatica_connection_api.models.check_res_summary import CheckResSummary

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

# convert the object into a dict
check_res_summary_dict = check_res_summary_instance.to_dict()
# create an instance of CheckResSummary from a dict
check_res_summary_from_dict = CheckResSummary.from_dict(check_res_summary_dict)

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