codec = $codec; } /** * @return array[] */ public function getCodec() { return $this->codec; } /** * @param string */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * @param bool */ public function setOnlyCountKeyBytes($onlyCountKeyBytes) { $this->onlyCountKeyBytes = $onlyCountKeyBytes; } /** * @return bool */ public function getOnlyCountKeyBytes() { return $this->onlyCountKeyBytes; } /** * @param bool */ public function setOnlyCountValueBytes($onlyCountValueBytes) { $this->onlyCountValueBytes = $onlyCountValueBytes; } /** * @return bool */ public function getOnlyCountValueBytes() { return $this->onlyCountValueBytes; } /** * @param string */ public function setOriginalName($originalName) { $this->originalName = $originalName; } /** * @return string */ public function getOriginalName() { return $this->originalName; } /** * @param string */ public function setSystemName($systemName) { $this->systemName = $systemName; } /** * @return string */ public function getSystemName() { return $this->systemName; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(InstructionOutput::class, 'Google_Service_Dataflow_InstructionOutput');