Skip to content

Latest commit

History

History
29 lines (20 loc) · 959 Bytes

File metadata and controls

29 lines (20 loc) · 959 Bytes

SessionOutputBody

Properties

NameTypeDescriptionNotes
urlstrHosted session URL to redirect the user to.

Example

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]