Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.03 KB

File metadata and controls

30 lines (21 loc) · 1.03 KB

VerifyContentRequest

Properties

Name Type Description Notes
page_url str URL of the page to verify
suggestion_id str ID of the suggestion to verify

Example

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]