Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 1.22 KB

File metadata and controls

29 lines (22 loc) · 1.22 KB

EnabledCheckContextDtoV2

Properties

Name Type Description Notes
moravia_profile_id str [optional]
custom_qa_display_name str [optional]
provider str [optional]

Example

from phrasetms_client.models.enabled_check_context_dto_v2 import EnabledCheckContextDtoV2

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

# convert the object into a dict
enabled_check_context_dto_v2_dict = enabled_check_context_dto_v2_instance.to_dict()
# create an instance of EnabledCheckContextDtoV2 from a dict
enabled_check_context_dto_v2_from_dict = EnabledCheckContextDtoV2.from_dict(enabled_check_context_dto_v2_dict)

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