Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 888 Bytes

File metadata and controls

29 lines (20 loc) · 888 Bytes

AuditRequest

Properties

Name Type Description Notes
url str The full URL of the website to audit

Example

from wordlift_client.models.audit_request import AuditRequest

# TODO update the JSON string below
json = "{}"
# create an instance of AuditRequest from a JSON string
audit_request_instance = AuditRequest.from_json(json)
# print the JSON string representation of the object
print(AuditRequest.to_json())

# convert the object into a dict
audit_request_dict = audit_request_instance.to_dict()
# create an instance of AuditRequest from a dict
audit_request_from_dict = AuditRequest.from_dict(audit_request_dict)

[Back to Model list] [Back to API list] [Back to README]