Files
peernet/demo_server/demo_client/docs/IceSessionDescription.md
2024-04-06 20:45:15 -07:00

1.2 KiB

IceSessionDescription

Properties

Name Type Description Notes
name str A unique identifier which can be used to send ICE candidates Maps to the session name [optional]
sdp_type str Used to construct the remote description in WebRTC [optional]
sdp str [optional]

Example

from openapi_client.models.ice_session_description import IceSessionDescription

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

# convert the object into a dict
ice_session_description_dict = ice_session_description_instance.to_dict()
# create an instance of IceSessionDescription from a dict
ice_session_description_form_dict = ice_session_description.from_dict(ice_session_description_dict)

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