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

30 lines
1.1 KiB
Markdown
Raw Normal View History

2024-04-06 20:45:15 -07:00
# ClaimIceCandidatesResponse
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**ice_candidates** | [**List[IceCandidate]**](IceCandidate.md) | | [optional]
## Example
```python
from openapi_client.models.claim_ice_candidates_response import ClaimIceCandidatesResponse
# TODO update the JSON string below
json = "{}"
# create an instance of ClaimIceCandidatesResponse from a JSON string
claim_ice_candidates_response_instance = ClaimIceCandidatesResponse.from_json(json)
# print the JSON string representation of the object
print(ClaimIceCandidatesResponse.to_json())
# convert the object into a dict
claim_ice_candidates_response_dict = claim_ice_candidates_response_instance.to_dict()
# create an instance of ClaimIceCandidatesResponse from a dict
claim_ice_candidates_response_form_dict = claim_ice_candidates_response.from_dict(claim_ice_candidates_response_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)