Files
peernet/demo_server/demo_client/docs/IceSessionDescription.md

32 lines
1.2 KiB
Markdown
Raw Normal View History

2024-04-06 20:45:15 -07:00
# 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
```python
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]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)