Skip to content

Commit 3033e1e

Browse files
committed
more tests
1 parent 5c77310 commit 3033e1e

4 files changed

Lines changed: 1360 additions & 10 deletions

File tree

src/conductor/client/http/models/integration_api.py

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
import six
44
from dataclasses import dataclass, field, fields
55
from typing import Dict, List, Optional, Any
6-
from deprecated import deprecated
7-
86

97
@dataclass
108
class IntegrationApi:
@@ -136,7 +134,6 @@ def configuration(self, configuration):
136134
self._configuration = configuration
137135

138136
@property
139-
@deprecated
140137
def created_by(self):
141138
"""Gets the created_by of this IntegrationApi. # noqa: E501
142139
@@ -147,7 +144,6 @@ def created_by(self):
147144
return self._created_by
148145

149146
@created_by.setter
150-
@deprecated
151147
def created_by(self, created_by):
152148
"""Sets the created_by of this IntegrationApi.
153149
@@ -159,7 +155,6 @@ def created_by(self, created_by):
159155
self._created_by = created_by
160156

161157
@property
162-
@deprecated
163158
def created_on(self):
164159
"""Gets the created_on of this IntegrationApi. # noqa: E501
165160
@@ -170,7 +165,6 @@ def created_on(self):
170165
return self._created_on
171166

172167
@created_on.setter
173-
@deprecated
174168
def created_on(self, created_on):
175169
"""Sets the created_on of this IntegrationApi.
176170
@@ -266,7 +260,6 @@ def tags(self, tags):
266260
self._tags = tags
267261

268262
@property
269-
@deprecated
270263
def updated_by(self):
271264
"""Gets the updated_by of this IntegrationApi. # noqa: E501
272265
@@ -277,7 +270,6 @@ def updated_by(self):
277270
return self._updated_by
278271

279272
@updated_by.setter
280-
@deprecated
281273
def updated_by(self, updated_by):
282274
"""Sets the updated_by of this IntegrationApi.
283275
@@ -289,7 +281,6 @@ def updated_by(self, updated_by):
289281
self._updated_by = updated_by
290282

291283
@property
292-
@deprecated
293284
def updated_on(self):
294285
"""Gets the updated_on of this IntegrationApi. # noqa: E501
295286
@@ -300,7 +291,6 @@ def updated_on(self):
300291
return self._updated_on
301292

302293
@updated_on.setter
303-
@deprecated
304294
def updated_on(self, updated_on):
305295
"""Sets the updated_on of this IntegrationApi.
306296

0 commit comments

Comments
 (0)