baseSpecs = $baseSpecs; } /** * @return array[] */ public function getBaseSpecs() { return $this->baseSpecs; } /** * @param array[] */ public function setCodec($codec) { $this->codec = $codec; } /** * @return array[] */ public function getCodec() { return $this->codec; } /** * @param bool */ public function setDoesNotNeedSplitting($doesNotNeedSplitting) { $this->doesNotNeedSplitting = $doesNotNeedSplitting; } /** * @return bool */ public function getDoesNotNeedSplitting() { return $this->doesNotNeedSplitting; } /** * @param SourceMetadata */ public function setMetadata(SourceMetadata $metadata) { $this->metadata = $metadata; } /** * @return SourceMetadata */ public function getMetadata() { return $this->metadata; } /** * @param array[] */ public function setSpec($spec) { $this->spec = $spec; } /** * @return array[] */ public function getSpec() { return $this->spec; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Source::class, 'Google_Service_Dataflow_Source');