Forgot to join deps
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
# ClientDto
|
||||
|
||||
|
||||
## Properties
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**name** | **str** | | [optional]
|
||||
**username** | **str** | | [optional]
|
||||
**key** | **str** | | [optional]
|
||||
|
||||
## Example
|
||||
|
||||
```python
|
||||
from board_mate.client.models.client_dto import ClientDto
|
||||
|
||||
# TODO update the JSON string below
|
||||
json = "{}"
|
||||
# create an instance of ClientDto from a JSON string
|
||||
client_dto_instance = ClientDto.from_json(json)
|
||||
# print the JSON string representation of the object
|
||||
print ClientDto.to_json()
|
||||
|
||||
# convert the object into a dict
|
||||
client_dto_dict = client_dto_instance.to_dict()
|
||||
# create an instance of ClientDto from a dict
|
||||
client_dto_form_dict = client_dto.from_dict(client_dto_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)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user