@@ -28,7 +28,7 @@ <h1 class="title">Module <code>presalytics.client.presalytics_ooxml_automation.m
28
28
< details class ="source ">
29
29
< summary >
30
30
< span > Expand source code</ span >
31
- < a href ="https://github.com/presalytics/python-client/blob/master/presalytics/client/presalytics_ooxml_automation/models/chart_axes.py#L0-L197 " class ="git-link "> Browse git</ a >
31
+ < a href ="https://github.com/presalytics/python-client/blob/master/presalytics/client/presalytics_ooxml_automation/models/chart_axes.py#L0-L189 " class ="git-link "> Browse git</ a >
32
32
</ summary >
33
33
< pre > < code class ="python "> # coding: utf-8
34
34
@@ -47,8 +47,6 @@ <h1 class="title">Module <code>presalytics.client.presalytics_ooxml_automation.m
47
47
48
48
import six
49
49
50
- from presalytics.client.presalytics_ooxml_automation.configuration import Configuration
51
-
52
50
53
51
class ChartAxes(object):
54
52
"""NOTE: This class is auto generated by OpenAPI Generator.
@@ -78,11 +76,8 @@ <h1 class="title">Module <code>presalytics.client.presalytics_ooxml_automation.m
78
76
'id': 'id'
79
77
}
80
78
81
- def __init__(self, charts_id=None, ooxml_id=None, axis_data_type_id=None, id=None, local_vars_configuration=None ): # noqa: E501
79
+ def __init__(self, charts_id=None, ooxml_id=None, axis_data_type_id=None, id=None): # noqa: E501
82
80
"""ChartAxes - a model defined in OpenAPI""" # noqa: E501
83
- if local_vars_configuration is None:
84
- local_vars_configuration = Configuration()
85
- self.local_vars_configuration = local_vars_configuration
86
81
87
82
self._charts_id = None
88
83
self._ooxml_id = None
@@ -220,14 +215,11 @@ <h1 class="title">Module <code>presalytics.client.presalytics_ooxml_automation.m
220
215
if not isinstance(other, ChartAxes):
221
216
return False
222
217
223
- return self.to_dict() == other.to_dict()
218
+ return self.__dict__ == other.__dict__
224
219
225
220
def __ne__(self, other):
226
221
"""Returns true if both objects are not equal"""
227
- if not isinstance(other, ChartAxes):
228
- return True
229
-
230
- return self.to_dict() != other.to_dict()</ code > </ pre >
222
+ return not self == other</ code > </ pre >
231
223
</ details >
232
224
</ section >
233
225
< section >
@@ -241,7 +233,7 @@ <h2 class="section-title" id="header-classes">Classes</h2>
241
233
< dl >
242
234
< dt id ="presalytics.client.presalytics_ooxml_automation.models.chart_axes.ChartAxes "> < code class ="flex name class ">
243
235
< span > class < span class ="ident "> ChartAxes</ span > </ span >
244
- < span > (</ span > < span > charts_id=None, ooxml_id=None, axis_data_type_id=None, id=None, local_vars_configuration=None )</ span >
236
+ < span > (</ span > < span > charts_id=None, ooxml_id=None, axis_data_type_id=None, id=None)</ span >
245
237
</ code > </ dt >
246
238
< dd >
247
239
< section class ="desc "> < p > NOTE: This class is auto generated by OpenAPI Generator.
@@ -251,7 +243,7 @@ <h2 class="section-title" id="header-classes">Classes</h2>
251
243
< details class ="source ">
252
244
< summary >
253
245
< span > Expand source code</ span >
254
- < a href ="https://github.com/presalytics/python-client/blob/master/presalytics/client/presalytics_ooxml_automation/models/chart_axes.py#L21-L198 " class ="git-link "> Browse git</ a >
246
+ < a href ="https://github.com/presalytics/python-client/blob/master/presalytics/client/presalytics_ooxml_automation/models/chart_axes.py#L19-L190 " class ="git-link "> Browse git</ a >
255
247
</ summary >
256
248
< pre > < code class ="python "> class ChartAxes(object):
257
249
"""NOTE: This class is auto generated by OpenAPI Generator.
@@ -281,11 +273,8 @@ <h2 class="section-title" id="header-classes">Classes</h2>
281
273
'id': 'id'
282
274
}
283
275
284
- def __init__(self, charts_id=None, ooxml_id=None, axis_data_type_id=None, id=None, local_vars_configuration=None ): # noqa: E501
276
+ def __init__(self, charts_id=None, ooxml_id=None, axis_data_type_id=None, id=None): # noqa: E501
285
277
"""ChartAxes - a model defined in OpenAPI""" # noqa: E501
286
- if local_vars_configuration is None:
287
- local_vars_configuration = Configuration()
288
- self.local_vars_configuration = local_vars_configuration
289
278
290
279
self._charts_id = None
291
280
self._ooxml_id = None
@@ -423,14 +412,11 @@ <h2 class="section-title" id="header-classes">Classes</h2>
423
412
if not isinstance(other, ChartAxes):
424
413
return False
425
414
426
- return self.to_dict() == other.to_dict()
415
+ return self.__dict__ == other.__dict__
427
416
428
417
def __ne__(self, other):
429
418
"""Returns true if both objects are not equal"""
430
- if not isinstance(other, ChartAxes):
431
- return True
432
-
433
- return self.to_dict() != other.to_dict()</ code > </ pre >
419
+ return not self == other</ code > </ pre >
434
420
</ details >
435
421
< h3 > Class variables</ h3 >
436
422
< dl >
@@ -475,7 +461,7 @@ <h3>Instance variables</h3>
475
461
< details class ="source ">
476
462
< summary >
477
463
< span > Expand source code</ span >
478
- < a href ="https://github.com/presalytics/python-client/blob/master/presalytics/client/presalytics_ooxml_automation/models/chart_axes.py#L70-L78 " class ="git-link "> Browse git</ a >
464
+ < a href ="https://github.com/presalytics/python-client/blob/master/presalytics/client/presalytics_ooxml_automation/models/chart_axes.py#L65-L73 " class ="git-link "> Browse git</ a >
479
465
</ summary >
480
466
< pre > < code class ="python "> @property
481
467
def charts_id(self):
@@ -498,7 +484,7 @@ <h3>Instance variables</h3>
498
484
< details class ="source ">
499
485
< summary >
500
486
< span > Expand source code</ span >
501
- < a href ="https://github.com/presalytics/python-client/blob/master/presalytics/client/presalytics_ooxml_automation/models/chart_axes.py#L91-L99 " class ="git-link "> Browse git</ a >
487
+ < a href ="https://github.com/presalytics/python-client/blob/master/presalytics/client/presalytics_ooxml_automation/models/chart_axes.py#L86-L94 " class ="git-link "> Browse git</ a >
502
488
</ summary >
503
489
< pre > < code class ="python "> @property
504
490
def ooxml_id(self):
@@ -521,7 +507,7 @@ <h3>Instance variables</h3>
521
507
< details class ="source ">
522
508
< summary >
523
509
< span > Expand source code</ span >
524
- < a href ="https://github.com/presalytics/python-client/blob/master/presalytics/client/presalytics_ooxml_automation/models/chart_axes.py#L112-L120 " class ="git-link "> Browse git</ a >
510
+ < a href ="https://github.com/presalytics/python-client/blob/master/presalytics/client/presalytics_ooxml_automation/models/chart_axes.py#L107-L115 " class ="git-link "> Browse git</ a >
525
511
</ summary >
526
512
< pre > < code class ="python "> @property
527
513
def axis_data_type_id(self):
@@ -544,7 +530,7 @@ <h3>Instance variables</h3>
544
530
< details class ="source ">
545
531
< summary >
546
532
< span > Expand source code</ span >
547
- < a href ="https://github.com/presalytics/python-client/blob/master/presalytics/client/presalytics_ooxml_automation/models/chart_axes.py#L133-L141 " class ="git-link "> Browse git</ a >
533
+ < a href ="https://github.com/presalytics/python-client/blob/master/presalytics/client/presalytics_ooxml_automation/models/chart_axes.py#L128-L136 " class ="git-link "> Browse git</ a >
548
534
</ summary >
549
535
< pre > < code class ="python "> @property
550
536
def id(self):
@@ -568,7 +554,7 @@ <h3>Methods</h3>
568
554
< details class ="source ">
569
555
< summary >
570
556
< span > Expand source code</ span >
571
- < a href ="https://github.com/presalytics/python-client/blob/master/presalytics/client/presalytics_ooxml_automation/models/chart_axes.py#L154-L176 " class ="git-link "> Browse git</ a >
557
+ < a href ="https://github.com/presalytics/python-client/blob/master/presalytics/client/presalytics_ooxml_automation/models/chart_axes.py#L149-L171 " class ="git-link "> Browse git</ a >
572
558
</ summary >
573
559
< pre > < code class ="python "> def to_dict(self):
574
560
"""Returns the model properties as a dict"""
@@ -603,7 +589,7 @@ <h3>Methods</h3>
603
589
< details class ="source ">
604
590
< summary >
605
591
< span > Expand source code</ span >
606
- < a href ="https://github.com/presalytics/python-client/blob/master/presalytics/client/presalytics_ooxml_automation/models/chart_axes.py#L178-L180 " class ="git-link "> Browse git</ a >
592
+ < a href ="https://github.com/presalytics/python-client/blob/master/presalytics/client/presalytics_ooxml_automation/models/chart_axes.py#L173-L175 " class ="git-link "> Browse git</ a >
607
593
</ summary >
608
594
< pre > < code class ="python "> def to_str(self):
609
595
"""Returns the string representation of the model"""
0 commit comments