Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.21 KB

File metadata and controls

33 lines (24 loc) · 1.21 KB

CheckSummaryByCheckItem

Properties

Name Type Description Notes
segment_id str
check_name MonitorCheckName
monitor_count int
check_result_count int
stats List[CheckSummaryStateStat]

Example

from wordlift_client.models.check_summary_by_check_item import CheckSummaryByCheckItem

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

# convert the object into a dict
check_summary_by_check_item_dict = check_summary_by_check_item_instance.to_dict()
# create an instance of CheckSummaryByCheckItem from a dict
check_summary_by_check_item_from_dict = CheckSummaryByCheckItem.from_dict(check_summary_by_check_item_dict)

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