@@ -48,8 +48,8 @@ def __init__(self):
4848 'comments_required' : 'bool' ,
4949 'visibility_condition' : 'VisibilityCondition' ,
5050 'answer_options' : 'list[AnswerOption]' ,
51- 'is_critical ' : 'bool' ,
52- 'is_kill ' : 'bool'
51+ 'is_kill ' : 'bool' ,
52+ 'is_critical ' : 'bool'
5353 }
5454
5555 self .attribute_map = {
@@ -61,8 +61,8 @@ def __init__(self):
6161 'comments_required' : 'commentsRequired' ,
6262 'visibility_condition' : 'visibilityCondition' ,
6363 'answer_options' : 'answerOptions' ,
64- 'is_critical ' : 'isCritical ' ,
65- 'is_kill ' : 'isKill '
64+ 'is_kill ' : 'isKill ' ,
65+ 'is_critical ' : 'isCritical '
6666 }
6767
6868 self ._id = None
@@ -73,8 +73,8 @@ def __init__(self):
7373 self ._comments_required = None
7474 self ._visibility_condition = None
7575 self ._answer_options = None
76- self ._is_critical = None
7776 self ._is_kill = None
77+ self ._is_critical = None
7878
7979 @property
8080 def id (self ):
@@ -265,50 +265,50 @@ def answer_options(self, answer_options):
265265 self ._answer_options = answer_options
266266
267267 @property
268- def is_critical (self ):
268+ def is_kill (self ):
269269 """
270- Gets the is_critical of this EvaluationQuestion.
270+ Gets the is_kill of this EvaluationQuestion.
271271
272272
273- :return: The is_critical of this EvaluationQuestion.
273+ :return: The is_kill of this EvaluationQuestion.
274274 :rtype: bool
275275 """
276- return self ._is_critical
276+ return self ._is_kill
277277
278- @is_critical .setter
279- def is_critical (self , is_critical ):
278+ @is_kill .setter
279+ def is_kill (self , is_kill ):
280280 """
281- Sets the is_critical of this EvaluationQuestion.
281+ Sets the is_kill of this EvaluationQuestion.
282282
283283
284- :param is_critical : The is_critical of this EvaluationQuestion.
284+ :param is_kill : The is_kill of this EvaluationQuestion.
285285 :type: bool
286286 """
287287
288- self ._is_critical = is_critical
288+ self ._is_kill = is_kill
289289
290290 @property
291- def is_kill (self ):
291+ def is_critical (self ):
292292 """
293- Gets the is_kill of this EvaluationQuestion.
293+ Gets the is_critical of this EvaluationQuestion.
294294
295295
296- :return: The is_kill of this EvaluationQuestion.
296+ :return: The is_critical of this EvaluationQuestion.
297297 :rtype: bool
298298 """
299- return self ._is_kill
299+ return self ._is_critical
300300
301- @is_kill .setter
302- def is_kill (self , is_kill ):
301+ @is_critical .setter
302+ def is_critical (self , is_critical ):
303303 """
304- Sets the is_kill of this EvaluationQuestion.
304+ Sets the is_critical of this EvaluationQuestion.
305305
306306
307- :param is_kill : The is_kill of this EvaluationQuestion.
307+ :param is_critical : The is_critical of this EvaluationQuestion.
308308 :type: bool
309309 """
310310
311- self ._is_kill = is_kill
311+ self ._is_critical = is_critical
312312
313313 def to_dict (self ):
314314 """
0 commit comments