| Name |
Type |
Description |
Notes |
| page_url |
str |
URL of the page to verify |
|
| suggestion_id |
str |
ID of the suggestion to verify |
|
from rankvectors.models.verify_content_request import VerifyContentRequest
# TODO update the JSON string below
json = "{}"
# create an instance of VerifyContentRequest from a JSON string
verify_content_request_instance = VerifyContentRequest.from_json(json)
# print the JSON string representation of the object
print(VerifyContentRequest.to_json())
# convert the object into a dict
verify_content_request_dict = verify_content_request_instance.to_dict()
# create an instance of VerifyContentRequest from a dict
verify_content_request_from_dict = VerifyContentRequest.from_dict(verify_content_request_dict)
[Back to Model list] [Back to API list] [Back to README]