File tree Expand file tree Collapse file tree 4 files changed +8
-7
lines changed
Expand file tree Collapse file tree 4 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ https://www.stitchdata.com/docs/developers/stitch-connect/api
77This Python package is automatically generated by the [ OpenAPI Generator] ( https://openapi-generator.tech ) project:
88
99- API version: 0.4.1
10- - Package version: 0.6.1
10+ - Package version: 0.6.2
1111- Build package: org.openapitools.codegen.languages.PythonClientCodegen
1212
1313Table of Contents:
@@ -150,6 +150,6 @@ npx openapi-generator generate \
150150 --package-name stitch_connect_client \
151151 --git-user-id NarrativeScience \
152152 --git-repo-id stitch-connect-python \
153- -p packageVersion=0.6.1 \
153+ -p packageVersion=0.6.2 \
154154 -t templates
155155```
Original file line number Diff line number Diff line change 1313from setuptools import find_packages , setup # noqa: H301
1414
1515NAME = "stitch-connect-client"
16- VERSION = "0.6.1 "
16+ VERSION = "0.6.2 "
1717# To install the library, run the following
1818#
1919# python setup.py install
Original file line number Diff line number Diff line change 8888from stitch_connect_client .models .streams_update_list import StreamsUpdateList
8989from stitch_connect_client .models .update_source_body import UpdateSourceBody
9090
91- __version__ = "0.6.1 "
91+ __version__ = "0.6.2 "
Original file line number Diff line number Diff line change @@ -62,13 +62,14 @@ def __init__(
6262 local_vars_configuration = Configuration ()
6363 self .local_vars_configuration = local_vars_configuration
6464
65+ self ._destination_id = None
6566 self ._display_name = None
6667 self ._type = None
6768 self ._name = None
6869 self ._properties = None
6970 self .discriminator = None
70- self .destination_id = None
7171
72+ self .destination_id = destination_id
7273 self .display_name = display_name
7374 self .type = type
7475 if name is not None :
@@ -187,7 +188,7 @@ def destination_id(self):
187188 :return: The destination_id of this CreateSourceBody. # noqa: E501
188189 :rtype: integer
189190 """
190- return self .destination_id
191+ return self ._destination_id
191192
192193 @properties .setter
193194 def destination_id (self , destination_id ):
@@ -198,7 +199,7 @@ def destination_id(self, destination_id):
198199 :type: integer
199200 """
200201
201- self .destination_id = destination_id
202+ self ._destination_id = destination_id
202203
203204 def to_dict (self ):
204205 """Returns the model properties as a dict"""
You can’t perform that action at this time.
0 commit comments