blob: 92c4a223041e2ed5830e4eca6fa5ae63b28d1ccf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# StatsMessage
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**kind** | **string** | | [optional] [default to KindEnum_Stats]
**timestamp** | **string** | | [optional] [default to undefined]
**country_iso** | **string** | | [optional] [default to undefined]
**data** | [**StatsSnapshot**](StatsSnapshot.md) | | [default to undefined]
## Example
```typescript
import { StatsMessage } from './api';
const instance: StatsMessage = {
kind,
timestamp,
country_iso,
data,
};
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|