32 lines
1.2 KiB
Markdown
32 lines
1.2 KiB
Markdown
|
|
# 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)
|
||
|
|
|
||
|
|
|