30 lines
971 B
Markdown
30 lines
971 B
Markdown
|
|
# ListKnocksResponse
|
||
|
|
|
||
|
|
|
||
|
|
## Properties
|
||
|
|
|
||
|
|
Name | Type | Description | Notes
|
||
|
|
------------ | ------------- | ------------- | -------------
|
||
|
|
**knocks** | [**List[Knock]**](Knock.md) | | [optional]
|
||
|
|
|
||
|
|
## Example
|
||
|
|
|
||
|
|
```python
|
||
|
|
from openapi_client.models.list_knocks_response import ListKnocksResponse
|
||
|
|
|
||
|
|
# TODO update the JSON string below
|
||
|
|
json = "{}"
|
||
|
|
# create an instance of ListKnocksResponse from a JSON string
|
||
|
|
list_knocks_response_instance = ListKnocksResponse.from_json(json)
|
||
|
|
# print the JSON string representation of the object
|
||
|
|
print(ListKnocksResponse.to_json())
|
||
|
|
|
||
|
|
# convert the object into a dict
|
||
|
|
list_knocks_response_dict = list_knocks_response_instance.to_dict()
|
||
|
|
# create an instance of ListKnocksResponse from a dict
|
||
|
|
list_knocks_response_form_dict = list_knocks_response.from_dict(list_knocks_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)
|
||
|
|
|
||
|
|
|