Skip to content

Commit 9edcbda

Browse files
committed
[release] 2.1.1
1 parent abf7133 commit 9edcbda

File tree

9 files changed

+39
-39
lines changed

9 files changed

+39
-39
lines changed

docs/RealTimeBreakdownValue.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Name | Type | Description | Notes
77
**negative_impact** | **int** | | [optional]
88
**metric_value** | **float** | | [optional]
99
**display_value** | **str** | | [optional]
10-
**concurent_viewers** | **int** | | [optional]
10+
**concurrent_viewers** | **int** | | [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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
66
**value** | **float** | | [optional]
77
**date** | **str** | | [optional]
8-
**concurent_viewers** | **int** | | [optional]
8+
**concurrent_viewers** | **int** | | [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

gen/generator-config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
"!!source": "https://github.com/OpenAPITools/openapi-generator/blob/master/docs/generators/python.md",
33
"packageName": "mux_python",
44
"projectName": "mux_python",
5-
"packageVersion": "2.1.0"
5+
"packageVersion": "2.1.1"
66
}

mux_python/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
from __future__ import absolute_import
1717

18-
__version__ = "2.1.0"
18+
__version__ = "2.1.1"
1919

2020
# import apis into sdk package
2121
from mux_python.api.assets_api import AssetsApi

mux_python/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
7979
self.default_headers[header_name] = header_value
8080
self.cookie = cookie
8181
# Set default User-Agent.
82-
self.user_agent = 'OpenAPI-Generator/2.1.0/python'
82+
self.user_agent = 'OpenAPI-Generator/2.1.1/python'
8383
self.client_side_validation = configuration.client_side_validation
8484

8585
def __enter__(self):

mux_python/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@ def to_debug_report(self):
406406
"OS: {env}\n"\
407407
"Python Version: {pyversion}\n"\
408408
"Version of the API: v1\n"\
409-
"SDK Package Version: 2.1.0".\
409+
"SDK Package Version: 2.1.1".\
410410
format(env=sys.platform, pyversion=sys.version)
411411

412412
def get_host_settings(self):

mux_python/models/real_time_breakdown_value.py

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -38,18 +38,18 @@ class RealTimeBreakdownValue(object):
3838
'negative_impact': 'int',
3939
'metric_value': 'float',
4040
'display_value': 'str',
41-
'concurent_viewers': 'int'
41+
'concurrent_viewers': 'int'
4242
}
4343

4444
attribute_map = {
4545
'value': 'value',
4646
'negative_impact': 'negative_impact',
4747
'metric_value': 'metric_value',
4848
'display_value': 'display_value',
49-
'concurent_viewers': 'concurent_viewers'
49+
'concurrent_viewers': 'concurrent_viewers'
5050
}
5151

52-
def __init__(self, value=None, negative_impact=None, metric_value=None, display_value=None, concurent_viewers=None, local_vars_configuration=None): # noqa: E501
52+
def __init__(self, value=None, negative_impact=None, metric_value=None, display_value=None, concurrent_viewers=None, local_vars_configuration=None): # noqa: E501
5353
"""RealTimeBreakdownValue - a model defined in OpenAPI""" # noqa: E501
5454
if local_vars_configuration is None:
5555
local_vars_configuration = Configuration.get_default_copy()
@@ -59,7 +59,7 @@ def __init__(self, value=None, negative_impact=None, metric_value=None, display_
5959
self._negative_impact = None
6060
self._metric_value = None
6161
self._display_value = None
62-
self._concurent_viewers = None
62+
self._concurrent_viewers = None
6363
self.discriminator = None
6464

6565
if value is not None:
@@ -70,8 +70,8 @@ def __init__(self, value=None, negative_impact=None, metric_value=None, display_
7070
self.metric_value = metric_value
7171
if display_value is not None:
7272
self.display_value = display_value
73-
if concurent_viewers is not None:
74-
self.concurent_viewers = concurent_viewers
73+
if concurrent_viewers is not None:
74+
self.concurrent_viewers = concurrent_viewers
7575

7676
@property
7777
def value(self):
@@ -158,25 +158,25 @@ def display_value(self, display_value):
158158
self._display_value = display_value
159159

160160
@property
161-
def concurent_viewers(self):
162-
"""Gets the concurent_viewers of this RealTimeBreakdownValue. # noqa: E501
161+
def concurrent_viewers(self):
162+
"""Gets the concurrent_viewers of this RealTimeBreakdownValue. # noqa: E501
163163
164164
165-
:return: The concurent_viewers of this RealTimeBreakdownValue. # noqa: E501
165+
:return: The concurrent_viewers of this RealTimeBreakdownValue. # noqa: E501
166166
:rtype: int
167167
"""
168-
return self._concurent_viewers
168+
return self._concurrent_viewers
169169

170-
@concurent_viewers.setter
171-
def concurent_viewers(self, concurent_viewers):
172-
"""Sets the concurent_viewers of this RealTimeBreakdownValue.
170+
@concurrent_viewers.setter
171+
def concurrent_viewers(self, concurrent_viewers):
172+
"""Sets the concurrent_viewers of this RealTimeBreakdownValue.
173173
174174
175-
:param concurent_viewers: The concurent_viewers of this RealTimeBreakdownValue. # noqa: E501
176-
:type concurent_viewers: int
175+
:param concurrent_viewers: The concurrent_viewers of this RealTimeBreakdownValue. # noqa: E501
176+
:type concurrent_viewers: int
177177
"""
178178

179-
self._concurent_viewers = concurent_viewers
179+
self._concurrent_viewers = concurrent_viewers
180180

181181
def to_dict(self, serialize=False):
182182
"""Returns the model properties as a dict"""

mux_python/models/real_time_timeseries_datapoint.py

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -36,32 +36,32 @@ class RealTimeTimeseriesDatapoint(object):
3636
openapi_types = {
3737
'value': 'float',
3838
'date': 'str',
39-
'concurent_viewers': 'int'
39+
'concurrent_viewers': 'int'
4040
}
4141

4242
attribute_map = {
4343
'value': 'value',
4444
'date': 'date',
45-
'concurent_viewers': 'concurent_viewers'
45+
'concurrent_viewers': 'concurrent_viewers'
4646
}
4747

48-
def __init__(self, value=None, date=None, concurent_viewers=None, local_vars_configuration=None): # noqa: E501
48+
def __init__(self, value=None, date=None, concurrent_viewers=None, local_vars_configuration=None): # noqa: E501
4949
"""RealTimeTimeseriesDatapoint - a model defined in OpenAPI""" # noqa: E501
5050
if local_vars_configuration is None:
5151
local_vars_configuration = Configuration.get_default_copy()
5252
self.local_vars_configuration = local_vars_configuration
5353

5454
self._value = None
5555
self._date = None
56-
self._concurent_viewers = None
56+
self._concurrent_viewers = None
5757
self.discriminator = None
5858

5959
if value is not None:
6060
self.value = value
6161
if date is not None:
6262
self.date = date
63-
if concurent_viewers is not None:
64-
self.concurent_viewers = concurent_viewers
63+
if concurrent_viewers is not None:
64+
self.concurrent_viewers = concurrent_viewers
6565

6666
@property
6767
def value(self):
@@ -106,25 +106,25 @@ def date(self, date):
106106
self._date = date
107107

108108
@property
109-
def concurent_viewers(self):
110-
"""Gets the concurent_viewers of this RealTimeTimeseriesDatapoint. # noqa: E501
109+
def concurrent_viewers(self):
110+
"""Gets the concurrent_viewers of this RealTimeTimeseriesDatapoint. # noqa: E501
111111
112112
113-
:return: The concurent_viewers of this RealTimeTimeseriesDatapoint. # noqa: E501
113+
:return: The concurrent_viewers of this RealTimeTimeseriesDatapoint. # noqa: E501
114114
:rtype: int
115115
"""
116-
return self._concurent_viewers
116+
return self._concurrent_viewers
117117

118-
@concurent_viewers.setter
119-
def concurent_viewers(self, concurent_viewers):
120-
"""Sets the concurent_viewers of this RealTimeTimeseriesDatapoint.
118+
@concurrent_viewers.setter
119+
def concurrent_viewers(self, concurrent_viewers):
120+
"""Sets the concurrent_viewers of this RealTimeTimeseriesDatapoint.
121121
122122
123-
:param concurent_viewers: The concurent_viewers of this RealTimeTimeseriesDatapoint. # noqa: E501
124-
:type concurent_viewers: int
123+
:param concurrent_viewers: The concurrent_viewers of this RealTimeTimeseriesDatapoint. # noqa: E501
124+
:type concurrent_viewers: int
125125
"""
126126

127-
self._concurent_viewers = concurent_viewers
127+
self._concurrent_viewers = concurrent_viewers
128128

129129
def to_dict(self, serialize=False):
130130
"""Returns the model properties as a dict"""

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
from setuptools import setup, find_packages # noqa: H301
1515

1616
NAME = "mux_python"
17-
VERSION = "2.1.0"
17+
VERSION = "2.1.1"
1818
# To install the library, run the following
1919
#
2020
# python setup.py install

0 commit comments

Comments
 (0)