Skip to content

Commit

Permalink
[release] 2.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
eropple committed Sep 11, 2021
1 parent abf7133 commit 9edcbda
Show file tree
Hide file tree
Showing 9 changed files with 39 additions and 39 deletions.
2 changes: 1 addition & 1 deletion docs/RealTimeBreakdownValue.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Name | Type | Description | Notes
**negative_impact** | **int** | | [optional]
**metric_value** | **float** | | [optional]
**display_value** | **str** | | [optional]
**concurent_viewers** | **int** | | [optional]
**concurrent_viewers** | **int** | | [optional]

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

Expand Down
2 changes: 1 addition & 1 deletion docs/RealTimeTimeseriesDatapoint.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**value** | **float** | | [optional]
**date** | **str** | | [optional]
**concurent_viewers** | **int** | | [optional]
**concurrent_viewers** | **int** | | [optional]

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

Expand Down
2 changes: 1 addition & 1 deletion gen/generator-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
"!!source": "https://github.com/OpenAPITools/openapi-generator/blob/master/docs/generators/python.md",
"packageName": "mux_python",
"projectName": "mux_python",
"packageVersion": "2.1.0"
"packageVersion": "2.1.1"
}
2 changes: 1 addition & 1 deletion mux_python/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

from __future__ import absolute_import

__version__ = "2.1.0"
__version__ = "2.1.1"

# import apis into sdk package
from mux_python.api.assets_api import AssetsApi
Expand Down
2 changes: 1 addition & 1 deletion mux_python/api_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
self.default_headers[header_name] = header_value
self.cookie = cookie
# Set default User-Agent.
self.user_agent = 'OpenAPI-Generator/2.1.0/python'
self.user_agent = 'OpenAPI-Generator/2.1.1/python'
self.client_side_validation = configuration.client_side_validation

def __enter__(self):
Expand Down
2 changes: 1 addition & 1 deletion mux_python/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ def to_debug_report(self):
"OS: {env}\n"\
"Python Version: {pyversion}\n"\
"Version of the API: v1\n"\
"SDK Package Version: 2.1.0".\
"SDK Package Version: 2.1.1".\
format(env=sys.platform, pyversion=sys.version)

def get_host_settings(self):
Expand Down
32 changes: 16 additions & 16 deletions mux_python/models/real_time_breakdown_value.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,18 +38,18 @@ class RealTimeBreakdownValue(object):
'negative_impact': 'int',
'metric_value': 'float',
'display_value': 'str',
'concurent_viewers': 'int'
'concurrent_viewers': 'int'
}

attribute_map = {
'value': 'value',
'negative_impact': 'negative_impact',
'metric_value': 'metric_value',
'display_value': 'display_value',
'concurent_viewers': 'concurent_viewers'
'concurrent_viewers': 'concurrent_viewers'
}

def __init__(self, value=None, negative_impact=None, metric_value=None, display_value=None, concurent_viewers=None, local_vars_configuration=None): # noqa: E501
def __init__(self, value=None, negative_impact=None, metric_value=None, display_value=None, concurrent_viewers=None, local_vars_configuration=None): # noqa: E501
"""RealTimeBreakdownValue - a model defined in OpenAPI""" # noqa: E501
if local_vars_configuration is None:
local_vars_configuration = Configuration.get_default_copy()
Expand All @@ -59,7 +59,7 @@ def __init__(self, value=None, negative_impact=None, metric_value=None, display_
self._negative_impact = None
self._metric_value = None
self._display_value = None
self._concurent_viewers = None
self._concurrent_viewers = None
self.discriminator = None

if value is not None:
Expand All @@ -70,8 +70,8 @@ def __init__(self, value=None, negative_impact=None, metric_value=None, display_
self.metric_value = metric_value
if display_value is not None:
self.display_value = display_value
if concurent_viewers is not None:
self.concurent_viewers = concurent_viewers
if concurrent_viewers is not None:
self.concurrent_viewers = concurrent_viewers

@property
def value(self):
Expand Down Expand Up @@ -158,25 +158,25 @@ def display_value(self, display_value):
self._display_value = display_value

@property
def concurent_viewers(self):
"""Gets the concurent_viewers of this RealTimeBreakdownValue. # noqa: E501
def concurrent_viewers(self):
"""Gets the concurrent_viewers of this RealTimeBreakdownValue. # noqa: E501
:return: The concurent_viewers of this RealTimeBreakdownValue. # noqa: E501
:return: The concurrent_viewers of this RealTimeBreakdownValue. # noqa: E501
:rtype: int
"""
return self._concurent_viewers
return self._concurrent_viewers

@concurent_viewers.setter
def concurent_viewers(self, concurent_viewers):
"""Sets the concurent_viewers of this RealTimeBreakdownValue.
@concurrent_viewers.setter
def concurrent_viewers(self, concurrent_viewers):
"""Sets the concurrent_viewers of this RealTimeBreakdownValue.
:param concurent_viewers: The concurent_viewers of this RealTimeBreakdownValue. # noqa: E501
:type concurent_viewers: int
:param concurrent_viewers: The concurrent_viewers of this RealTimeBreakdownValue. # noqa: E501
:type concurrent_viewers: int
"""

self._concurent_viewers = concurent_viewers
self._concurrent_viewers = concurrent_viewers

def to_dict(self, serialize=False):
"""Returns the model properties as a dict"""
Expand Down
32 changes: 16 additions & 16 deletions mux_python/models/real_time_timeseries_datapoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,32 +36,32 @@ class RealTimeTimeseriesDatapoint(object):
openapi_types = {
'value': 'float',
'date': 'str',
'concurent_viewers': 'int'
'concurrent_viewers': 'int'
}

attribute_map = {
'value': 'value',
'date': 'date',
'concurent_viewers': 'concurent_viewers'
'concurrent_viewers': 'concurrent_viewers'
}

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

self._value = None
self._date = None
self._concurent_viewers = None
self._concurrent_viewers = None
self.discriminator = None

if value is not None:
self.value = value
if date is not None:
self.date = date
if concurent_viewers is not None:
self.concurent_viewers = concurent_viewers
if concurrent_viewers is not None:
self.concurrent_viewers = concurrent_viewers

@property
def value(self):
Expand Down Expand Up @@ -106,25 +106,25 @@ def date(self, date):
self._date = date

@property
def concurent_viewers(self):
"""Gets the concurent_viewers of this RealTimeTimeseriesDatapoint. # noqa: E501
def concurrent_viewers(self):
"""Gets the concurrent_viewers of this RealTimeTimeseriesDatapoint. # noqa: E501
:return: The concurent_viewers of this RealTimeTimeseriesDatapoint. # noqa: E501
:return: The concurrent_viewers of this RealTimeTimeseriesDatapoint. # noqa: E501
:rtype: int
"""
return self._concurent_viewers
return self._concurrent_viewers

@concurent_viewers.setter
def concurent_viewers(self, concurent_viewers):
"""Sets the concurent_viewers of this RealTimeTimeseriesDatapoint.
@concurrent_viewers.setter
def concurrent_viewers(self, concurrent_viewers):
"""Sets the concurrent_viewers of this RealTimeTimeseriesDatapoint.
:param concurent_viewers: The concurent_viewers of this RealTimeTimeseriesDatapoint. # noqa: E501
:type concurent_viewers: int
:param concurrent_viewers: The concurrent_viewers of this RealTimeTimeseriesDatapoint. # noqa: E501
:type concurrent_viewers: int
"""

self._concurent_viewers = concurent_viewers
self._concurrent_viewers = concurrent_viewers

def to_dict(self, serialize=False):
"""Returns the model properties as a dict"""
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from setuptools import setup, find_packages # noqa: H301

NAME = "mux_python"
VERSION = "2.1.0"
VERSION = "2.1.1"
# To install the library, run the following
#
# python setup.py install
Expand Down

0 comments on commit 9edcbda

Please sign in to comment.