blob: 4baad8f5d83d6f5acbb8957c8497714371621099 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# CountStat
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**facet** | [**{ [key: string]: FacetValue; }**](FacetValue.md) | The grouping criteria | [default to undefined]
**count** | **number** | The count value for the given metric and facet | [default to undefined]
## Example
```typescript
import { CountStat } from './api';
const instance: CountStat = {
facet,
count,
};
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|