Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.09 KB

File metadata and controls

31 lines (22 loc) · 1.09 KB

ContentVerification

Properties

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]

Example

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]