combinedConditions = $combinedConditions; } /** * @deprecated * @return EnterpriseCrmEventbusProtoCombinedCondition[] */ public function getCombinedConditions() { return $this->combinedConditions; } /** * Standard filter expression for this task to become an eligible next task. * * @param string $condition */ public function setCondition($condition) { $this->condition = $condition; } /** * @return string */ public function getCondition() { return $this->condition; } /** * User-provided description intended to give more business context about the * next task edge or condition. * * @param string $description */ public function setDescription($description) { $this->description = $description; } /** * @return string */ public function getDescription() { return $this->description; } /** * User-provided label that is attached to this edge in the UI. * * @param string $label */ public function setLabel($label) { $this->label = $label; } /** * @return string */ public function getLabel() { return $this->label; } /** * ID of the next task. * * @param string $taskConfigId */ public function setTaskConfigId($taskConfigId) { $this->taskConfigId = $taskConfigId; } /** * @return string */ public function getTaskConfigId() { return $this->taskConfigId; } /** * Task number of the next task. * * @param string $taskNumber */ public function setTaskNumber($taskNumber) { $this->taskNumber = $taskNumber; } /** * @return string */ public function getTaskNumber() { return $this->taskNumber; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(EnterpriseCrmEventbusProtoNextTask::class, 'Google_Service_Integrations_EnterpriseCrmEventbusProtoNextTask');