32 lines
964 B
Markdown
32 lines
964 B
Markdown
# Knock
|
|
|
|
|
|
## Properties
|
|
|
|
Name | Type | Description | Notes
|
|
------------ | ------------- | ------------- | -------------
|
|
**name** | **str** | | [optional]
|
|
**offer** | [**IceSessionDescription**](IceSessionDescription.md) | The service being connected too | [optional]
|
|
**answer** | [**IceSessionDescription**](IceSessionDescription.md) | | [optional]
|
|
|
|
## Example
|
|
|
|
```python
|
|
from openapi_client.models.knock import Knock
|
|
|
|
# TODO update the JSON string below
|
|
json = "{}"
|
|
# create an instance of Knock from a JSON string
|
|
knock_instance = Knock.from_json(json)
|
|
# print the JSON string representation of the object
|
|
print(Knock.to_json())
|
|
|
|
# convert the object into a dict
|
|
knock_dict = knock_instance.to_dict()
|
|
# create an instance of Knock from a dict
|
|
knock_form_dict = knock.from_dict(knock_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)
|
|
|
|
|