| Name | Type | Description | Notes |
|---|
| url | str | Hosted session URL to redirect the user to. | |
fromrevengai.models.session_output_bodyimportSessionOutputBody# TODO update the JSON string belowjson="{}"# create an instance of SessionOutputBody from a JSON stringsession_output_body_instance=SessionOutputBody.from_json(json)
# print the JSON string representation of the objectprint(SessionOutputBody.to_json())
# convert the object into a dictsession_output_body_dict=session_output_body_instance.to_dict()
# create an instance of SessionOutputBody from a dictsession_output_body_from_dict=SessionOutputBody.from_dict(session_output_body_dict)[Back to Model list][Back to API list][Back to README]