34 lines
1.0 KiB
Markdown
34 lines
1.0 KiB
Markdown
|
|
# IceCandidate
|
||
|
|
|
||
|
|
|
||
|
|
## Properties
|
||
|
|
|
||
|
|
Name | Type | Description | Notes
|
||
|
|
------------ | ------------- | ------------- | -------------
|
||
|
|
**name** | **str** | | [optional]
|
||
|
|
**candidate** | **str** | | [optional]
|
||
|
|
**sdp_mid** | **str** | | [optional]
|
||
|
|
**sdp_line_index** | **int** | | [optional]
|
||
|
|
**username_fragment** | **str** | | [optional]
|
||
|
|
|
||
|
|
## Example
|
||
|
|
|
||
|
|
```python
|
||
|
|
from openapi_client.models.ice_candidate import IceCandidate
|
||
|
|
|
||
|
|
# TODO update the JSON string below
|
||
|
|
json = "{}"
|
||
|
|
# create an instance of IceCandidate from a JSON string
|
||
|
|
ice_candidate_instance = IceCandidate.from_json(json)
|
||
|
|
# print the JSON string representation of the object
|
||
|
|
print(IceCandidate.to_json())
|
||
|
|
|
||
|
|
# convert the object into a dict
|
||
|
|
ice_candidate_dict = ice_candidate_instance.to_dict()
|
||
|
|
# create an instance of IceCandidate from a dict
|
||
|
|
ice_candidate_form_dict = ice_candidate.from_dict(ice_candidate_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)
|
||
|
|
|
||
|
|
|