Files
service-aware-frontend/pkgs/clan-cli/tests/openapi_client/docs/Eventmessage.md
Luis-Hebendanz 17df0a6ac1
All checks were successful
checks-impure / test (pull_request) Successful in 26s
checks / test (pull_request) Successful in 1m15s
Added nested create_eventmessages
2024-01-18 18:10:22 +01:00

39 lines
1.1 KiB
Markdown

# Eventmessage
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**timestamp** | **int** | |
**group** | **int** | |
**group_id** | **int** | |
**msg_type** | **int** | |
**src_did** | **str** | |
**des_did** | **str** | |
**msg** | **object** | |
**id** | **int** | |
**des_name** | **str** | | [optional]
**src_name** | **str** | | [optional]
**msg_type_name** | **str** | | [optional]
## Example
```python
from openapi_client.models.eventmessage import Eventmessage
# TODO update the JSON string below
json = "{}"
# create an instance of Eventmessage from a JSON string
eventmessage_instance = Eventmessage.from_json(json)
# print the JSON string representation of the object
print Eventmessage.to_json()
# convert the object into a dict
eventmessage_dict = eventmessage_instance.to_dict()
# create an instance of Eventmessage from a dict
eventmessage_form_dict = eventmessage.from_dict(eventmessage_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)