Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 074658c

Browse files
committedJan 8, 2021
Fix type issue with realtime API
1 parent b8aae4c commit 074658c

2 files changed

+4
-4
lines changed
 

‎docs/RealTimeHistogramTimeseriesDatapoint.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
66
**Timestamp** | **string** | | [optional]
77
**Sum** | **int64** | | [optional]
8-
**P95** | **int64** | | [optional]
9-
**Median** | **int64** | | [optional]
8+
**P95** | **float64** | | [optional]
9+
**Median** | **float64** | | [optional]
1010
**MaxPercentage** | **float64** | | [optional]
1111
**BucketValues** | [**[]RealTimeHistogramTimeseriesBucketValues**](RealTimeHistogramTimeseriesBucketValues.md) | | [optional]
1212
**Average** | **float64** | | [optional]

‎model_real_time_histogram_timeseries_datapoint.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ package muxgo
66
type RealTimeHistogramTimeseriesDatapoint struct {
77
Timestamp string `json:"timestamp,omitempty"`
88
Sum int64 `json:"sum,omitempty"`
9-
P95 int64 `json:"p95,omitempty"`
10-
Median int64 `json:"median,omitempty"`
9+
P95 float64 `json:"p95,omitempty"`
10+
Median float64 `json:"median,omitempty"`
1111
MaxPercentage float64 `json:"max_percentage,omitempty"`
1212
BucketValues []RealTimeHistogramTimeseriesBucketValues `json:"bucket_values,omitempty"`
1313
Average float64 `json:"average,omitempty"`

0 commit comments

Comments
 (0)
Please sign in to comment.