frequency = $frequency; } /** * @return self::FREQUENCY_* */ public function getFrequency() { return $this->frequency; } /** * The types of schema modifications to consider. Defaults to NEW_COLUMNS. * * @param string[] $types */ public function setTypes($types) { $this->types = $types; } /** * @return string[] */ public function getTypes() { return $this->types; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GooglePrivacyDlpV2SchemaModifiedCadence::class, 'Google_Service_DLP_GooglePrivacyDlpV2SchemaModifiedCadence');