Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.05 KB

File metadata and controls

34 lines (25 loc) · 1.05 KB

CheckResultItem

Properties

Name Type Description Notes
created_at datetime
run_id str
state str
score float [optional]
details str [optional]
execution_ms float

Example

from wordlift_client.models.check_result_item import CheckResultItem

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

# convert the object into a dict
check_result_item_dict = check_result_item_instance.to_dict()
# create an instance of CheckResultItem from a dict
check_result_item_from_dict = CheckResultItem.from_dict(check_result_item_dict)

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