canDelete = $canDelete; } /** * @return bool */ public function getCanDelete() { return $this->canDelete; } /** * Whether the user can disable this label. The user must have permission and * this label must not already be disabled. * * @param bool $canDisable */ public function setCanDisable($canDisable) { $this->canDisable = $canDisable; } /** * @return bool */ public function getCanDisable() { return $this->canDisable; } /** * Whether the user can enable this label. The user must have permission and * this label must be disabled. * * @param bool $canEnable */ public function setCanEnable($canEnable) { $this->canEnable = $canEnable; } /** * @return bool */ public function getCanEnable() { return $this->canEnable; } /** * Whether the user can change this label. * * @param bool $canUpdate */ public function setCanUpdate($canUpdate) { $this->canUpdate = $canUpdate; } /** * @return bool */ public function getCanUpdate() { return $this->canUpdate; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleAppsDriveLabelsV2LabelSchemaCapabilities::class, 'Google_Service_DriveLabels_GoogleAppsDriveLabelsV2LabelSchemaCapabilities');