| Name | Type | Description | Notes |
|---|---|---|---|
| events | List[ReportEvent] | [optional] | |
| url | str |
fromrevengai.models.extracted_urlimportExtractedURL# TODO update the JSON string belowjson="{}"# create an instance of ExtractedURL from a JSON stringextracted_url_instance=ExtractedURL.from_json(json)
# print the JSON string representation of the objectprint(ExtractedURL.to_json())
# convert the object into a dictextracted_url_dict=extracted_url_instance.to_dict()
# create an instance of ExtractedURL from a dictextracted_url_from_dict=ExtractedURL.from_dict(extracted_url_dict)