| Name |
Type |
Description |
Notes |
| safe |
bool |
Whether it's safe to implement the link |
|
| reason |
str |
Reason for the verification result |
|
| change_result |
ChangeResult |
|
[optional] |
from rankvectors.models.content_verification import ContentVerification
# TODO update the JSON string below
json = "{}"
# create an instance of ContentVerification from a JSON string
content_verification_instance = ContentVerification.from_json(json)
# print the JSON string representation of the object
print(ContentVerification.to_json())
# convert the object into a dict
content_verification_dict = content_verification_instance.to_dict()
# create an instance of ContentVerification from a dict
content_verification_from_dict = ContentVerification.from_dict(content_verification_dict)
[Back to Model list] [Back to API list] [Back to README]