Skip to content

Commit

Permalink
"CI"
Browse files Browse the repository at this point in the history
  • Loading branch information
VoicegainGithub authored and DrJJ committed Jun 28, 2021
1 parent 96a861a commit b297321
Show file tree
Hide file tree
Showing 5 changed files with 207 additions and 2 deletions.
1 change: 1 addition & 0 deletions voicegain_speech/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@
from voicegain_speech.models.async_result_full_all_of_result import AsyncResultFullAllOfResult
from voicegain_speech.models.async_result_incremental import AsyncResultIncremental
from voicegain_speech.models.async_result_incremental_detail import AsyncResultIncrementalDetail
from voicegain_speech.models.async_result_incremental_detail_control_status import AsyncResultIncrementalDetailControlStatus
from voicegain_speech.models.async_result_incremental_detail_result import AsyncResultIncrementalDetailResult
from voicegain_speech.models.async_session_established import AsyncSessionEstablished
from voicegain_speech.models.async_session_short_info import AsyncSessionShortInfo
Expand Down
1 change: 1 addition & 0 deletions voicegain_speech/models/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@
from voicegain_speech.models.async_result_full_all_of_result import AsyncResultFullAllOfResult
from voicegain_speech.models.async_result_incremental import AsyncResultIncremental
from voicegain_speech.models.async_result_incremental_detail import AsyncResultIncrementalDetail
from voicegain_speech.models.async_result_incremental_detail_control_status import AsyncResultIncrementalDetailControlStatus
from voicegain_speech.models.async_result_incremental_detail_result import AsyncResultIncrementalDetailResult
from voicegain_speech.models.async_session_established import AsyncSessionEstablished
from voicegain_speech.models.async_session_short_info import AsyncSessionShortInfo
Expand Down
28 changes: 27 additions & 1 deletion voicegain_speech/models/async_result_incremental.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,17 +37,19 @@ class AsyncResultIncremental(object):
'debug': 'DebugInfo',
'progress': 'Progress',
'session': 'AsyncSessionShortInfo',
'control_status': 'AsyncResultIncrementalDetailControlStatus',
'result': 'AsyncResultIncrementalDetailResult'
}

attribute_map = {
'debug': 'debug',
'progress': 'progress',
'session': 'session',
'control_status': 'controlStatus',
'result': 'result'
}

def __init__(self, debug=None, progress=None, session=None, result=None, local_vars_configuration=None): # noqa: E501
def __init__(self, debug=None, progress=None, session=None, control_status=None, result=None, local_vars_configuration=None): # noqa: E501
"""AsyncResultIncremental - a model defined in OpenAPI""" # noqa: E501
if local_vars_configuration is None:
local_vars_configuration = Configuration()
Expand All @@ -56,6 +58,7 @@ def __init__(self, debug=None, progress=None, session=None, result=None, local_v
self._debug = None
self._progress = None
self._session = None
self._control_status = None
self._result = None
self.discriminator = None

Expand All @@ -64,6 +67,8 @@ def __init__(self, debug=None, progress=None, session=None, result=None, local_v
if progress is not None:
self.progress = progress
self.session = session
if control_status is not None:
self.control_status = control_status
if result is not None:
self.result = result

Expand Down Expand Up @@ -132,6 +137,27 @@ def session(self, session):

self._session = session

@property
def control_status(self):
"""Gets the control_status of this AsyncResultIncremental. # noqa: E501
:return: The control_status of this AsyncResultIncremental. # noqa: E501
:rtype: AsyncResultIncrementalDetailControlStatus
"""
return self._control_status

@control_status.setter
def control_status(self, control_status):
"""Sets the control_status of this AsyncResultIncremental.
:param control_status: The control_status of this AsyncResultIncremental. # noqa: E501
:type: AsyncResultIncrementalDetailControlStatus
"""

self._control_status = control_status

@property
def result(self):
"""Gets the result of this AsyncResultIncremental. # noqa: E501
Expand Down
28 changes: 27 additions & 1 deletion voicegain_speech/models/async_result_incremental_detail.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,25 +34,51 @@ class AsyncResultIncrementalDetail(object):
and the value is json key in definition.
"""
openapi_types = {
'control_status': 'AsyncResultIncrementalDetailControlStatus',
'result': 'AsyncResultIncrementalDetailResult'
}

attribute_map = {
'control_status': 'controlStatus',
'result': 'result'
}

def __init__(self, result=None, local_vars_configuration=None): # noqa: E501
def __init__(self, control_status=None, result=None, local_vars_configuration=None): # noqa: E501
"""AsyncResultIncrementalDetail - a model defined in OpenAPI""" # noqa: E501
if local_vars_configuration is None:
local_vars_configuration = Configuration()
self.local_vars_configuration = local_vars_configuration

self._control_status = None
self._result = None
self.discriminator = None

if control_status is not None:
self.control_status = control_status
if result is not None:
self.result = result

@property
def control_status(self):
"""Gets the control_status of this AsyncResultIncrementalDetail. # noqa: E501
:return: The control_status of this AsyncResultIncrementalDetail. # noqa: E501
:rtype: AsyncResultIncrementalDetailControlStatus
"""
return self._control_status

@control_status.setter
def control_status(self, control_status):
"""Sets the control_status of this AsyncResultIncrementalDetail.
:param control_status: The control_status of this AsyncResultIncrementalDetail. # noqa: E501
:type: AsyncResultIncrementalDetailControlStatus
"""

self._control_status = control_status

@property
def result(self):
"""Gets the result of this AsyncResultIncrementalDetail. # noqa: E501
Expand Down
Loading

0 comments on commit b297321

Please sign in to comment.