Skip to content

Commit 36ae51a

Browse files
committed
[release] 0.15.1
1 parent 04c9aac commit 36ae51a

5 files changed

+11
-11
lines changed

configuration.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ type ConfigurationOption func(*Configuration)
2222
func NewConfiguration(opts ...ConfigurationOption) *Configuration {
2323
cfg := &Configuration{
2424
basePath: "https://api.mux.com",
25-
userAgent: "Mux Go | 0.15.0",
25+
userAgent: "Mux Go | 0.15.",
2626
}
2727
for _, opt := range opts {
2828
opt(cfg)

docs/RealTimeBreakdownValue.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Name | Type | Description | Notes
77
**NegativeImpact** | **int64** | | [optional]
88
**MetricValue** | **float64** | | [optional]
99
**DisplayValue** | **string** | | [optional]
10-
**ConcurentViewers** | **int64** | | [optional]
10+
**ConcurrentViewers** | **int64** | | [optional]
1111

1212
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
1313

docs/RealTimeTimeseriesDatapoint.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
66
**Value** | **float64** | | [optional]
77
**Date** | **string** | | [optional]
8-
**ConcurentViewers** | **int64** | | [optional]
8+
**ConcurrentViewers** | **int64** | | [optional]
99

1010
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
1111

model_real_time_breakdown_value.go

+5-5
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
package muxgo
55

66
type RealTimeBreakdownValue struct {
7-
Value string `json:"value,omitempty"`
8-
NegativeImpact int64 `json:"negative_impact,omitempty"`
9-
MetricValue float64 `json:"metric_value,omitempty"`
10-
DisplayValue string `json:"display_value,omitempty"`
11-
ConcurentViewers int64 `json:"concurent_viewers,omitempty"`
7+
Value string `json:"value,omitempty"`
8+
NegativeImpact int64 `json:"negative_impact,omitempty"`
9+
MetricValue float64 `json:"metric_value,omitempty"`
10+
DisplayValue string `json:"display_value,omitempty"`
11+
ConcurrentViewers int64 `json:"concurrent_viewers,omitempty"`
1212
}

model_real_time_timeseries_datapoint.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
package muxgo
55

66
type RealTimeTimeseriesDatapoint struct {
7-
Value float64 `json:"value,omitempty"`
8-
Date string `json:"date,omitempty"`
9-
ConcurentViewers int64 `json:"concurent_viewers,omitempty"`
7+
Value float64 `json:"value,omitempty"`
8+
Date string `json:"date,omitempty"`
9+
ConcurrentViewers int64 `json:"concurrent_viewers,omitempty"`
1010
}

0 commit comments

Comments
 (0)