Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 1.22 KB

EnabledCheckDtoV2.md

File metadata and controls

28 lines (21 loc) · 1.22 KB

EnabledCheckDtoV2

Properties

Name Type Description Notes
checker_type str [optional]
context EnabledCheckContextDtoV2 [optional]

Example

from phrasetms_client.models.enabled_check_dto_v2 import EnabledCheckDtoV2

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

# convert the object into a dict
enabled_check_dto_v2_dict = enabled_check_dto_v2_instance.to_dict()
# create an instance of EnabledCheckDtoV2 from a dict
enabled_check_dto_v2_from_dict = EnabledCheckDtoV2.from_dict(enabled_check_dto_v2_dict)

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