Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.04 KB

SubmitFactCheck200Response.md

File metadata and controls

29 lines (20 loc) · 1.04 KB

SubmitFactCheck200Response

Properties

Name Type Description Notes
response str [optional]

Example

from wordlift_client.models.submit_fact_check200_response import SubmitFactCheck200Response

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

# convert the object into a dict
submit_fact_check200_response_dict = submit_fact_check200_response_instance.to_dict()
# create an instance of SubmitFactCheck200Response from a dict
submit_fact_check200_response_from_dict = SubmitFactCheck200Response.from_dict(submit_fact_check200_response_dict)

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