@@ -69,7 +69,6 @@ class PipelineItem implements ModelInterface, ArrayAccess, JsonSerializable
6969 'id ' => 'int ' ,
7070 'name ' => 'string ' ,
7171 'order_nr ' => 'int ' ,
72- 'is_selected ' => 'bool ' ,
7372 'is_deleted ' => 'bool ' ,
7473 'is_deal_probability_enabled ' => 'bool ' ,
7574 'add_time ' => 'string ' ,
@@ -87,7 +86,6 @@ class PipelineItem implements ModelInterface, ArrayAccess, JsonSerializable
8786 'id ' => null ,
8887 'name ' => null ,
8988 'order_nr ' => null ,
90- 'is_selected ' => null ,
9189 'is_deleted ' => null ,
9290 'is_deal_probability_enabled ' => null ,
9391 'add_time ' => null ,
@@ -128,7 +126,6 @@ public static function openAPIFormats(): array
128126 'id ' => 'id ' ,
129127 'name ' => 'name ' ,
130128 'order_nr ' => 'order_nr ' ,
131- 'is_selected ' => 'is_selected ' ,
132129 'is_deleted ' => 'is_deleted ' ,
133130 'is_deal_probability_enabled ' => 'is_deal_probability_enabled ' ,
134131 'add_time ' => 'add_time ' ,
@@ -144,7 +141,6 @@ public static function openAPIFormats(): array
144141 'id ' => 'setId ' ,
145142 'name ' => 'setName ' ,
146143 'order_nr ' => 'setOrderNr ' ,
147- 'is_selected ' => 'setIsSelected ' ,
148144 'is_deleted ' => 'setIsDeleted ' ,
149145 'is_deal_probability_enabled ' => 'setIsDealProbabilityEnabled ' ,
150146 'add_time ' => 'setAddTime ' ,
@@ -160,7 +156,6 @@ public static function openAPIFormats(): array
160156 'id ' => 'getId ' ,
161157 'name ' => 'getName ' ,
162158 'order_nr ' => 'getOrderNr ' ,
163- 'is_selected ' => 'getIsSelected ' ,
164159 'is_deleted ' => 'getIsDeleted ' ,
165160 'is_deal_probability_enabled ' => 'getIsDealProbabilityEnabled ' ,
166161 'add_time ' => 'getAddTime ' ,
@@ -237,7 +232,6 @@ public function __construct(array $data = null)
237232 $ this ->container ['id ' ] = $ data ['id ' ] ?? null ;
238233 $ this ->container ['name ' ] = $ data ['name ' ] ?? null ;
239234 $ this ->container ['order_nr ' ] = $ data ['order_nr ' ] ?? null ;
240- $ this ->container ['is_selected ' ] = $ data ['is_selected ' ] ?? null ;
241235 $ this ->container ['is_deleted ' ] = $ data ['is_deleted ' ] ?? null ;
242236 $ this ->container ['is_deal_probability_enabled ' ] = $ data ['is_deal_probability_enabled ' ] ?? null ;
243237 $ this ->container ['add_time ' ] = $ data ['add_time ' ] ?? null ;
@@ -342,30 +336,6 @@ public function setOrderNr($order_nr): self
342336 return $ this ;
343337 }
344338
345- /**
346- * Gets is_selected
347- *
348- * @return bool|null
349- */
350- public function getIsSelected ()
351- {
352- return $ this ->container ['is_selected ' ];
353- }
354-
355- /**
356- * Sets is_selected
357- *
358- * @param bool|null $is_selected Whether this pipeline is selected or not
359- *
360- * @return self
361- */
362- public function setIsSelected ($ is_selected ): self
363- {
364- $ this ->container ['is_selected ' ] = $ is_selected ;
365-
366- return $ this ;
367- }
368-
369339 /**
370340 * Gets is_deleted
371341 *
0 commit comments