| Name | Type | Description | Notes |
|---|---|---|---|
| success | bool | [optional] | |
| verification | ContentVerification | [optional] |
from rankvectors.models.verify_content200_response import VerifyContent200Response
# TODO update the JSON string below
json = "{}"
# create an instance of VerifyContent200Response from a JSON string
verify_content200_response_instance = VerifyContent200Response.from_json(json)
# print the JSON string representation of the object
print(VerifyContent200Response.to_json())
# convert the object into a dict
verify_content200_response_dict = verify_content200_response_instance.to_dict()
# create an instance of VerifyContent200Response from a dict
verify_content200_response_from_dict = VerifyContent200Response.from_dict(verify_content200_response_dict)