dependencyTargets = $dependencyTargets; } /** * @return Target[] */ public function getDependencyTargets() { return $this->dependencyTargets; } /** * @param bool */ public function setDisabled($disabled) { $this->disabled = $disabled; } /** * @return bool */ public function getDisabled() { return $this->disabled; } /** * @param Target */ public function setParentAction(Target $parentAction) { $this->parentAction = $parentAction; } /** * @return Target */ public function getParentAction() { return $this->parentAction; } /** * @param RelationDescriptor */ public function setRelationDescriptor(RelationDescriptor $relationDescriptor) { $this->relationDescriptor = $relationDescriptor; } /** * @return RelationDescriptor */ public function getRelationDescriptor() { return $this->relationDescriptor; } /** * @param string */ public function setSelectQuery($selectQuery) { $this->selectQuery = $selectQuery; } /** * @return string */ public function getSelectQuery() { return $this->selectQuery; } /** * @param string[] */ public function setTags($tags) { $this->tags = $tags; } /** * @return string[] */ public function getTags() { return $this->tags; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Assertion::class, 'Google_Service_Dataform_Assertion');