defaultStreamingMode = $defaultStreamingMode; } /** * @return string */ public function getDefaultStreamingMode() { return $this->defaultStreamingMode; } /** * @param string */ public function setDescription($description) { $this->description = $description; } /** * @return string */ public function getDescription() { return $this->description; } /** * @param string */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * @param ParameterMetadata[] */ public function setParameters($parameters) { $this->parameters = $parameters; } /** * @return ParameterMetadata[] */ public function getParameters() { return $this->parameters; } /** * @param bool */ public function setStreaming($streaming) { $this->streaming = $streaming; } /** * @return bool */ public function getStreaming() { return $this->streaming; } /** * @param bool */ public function setSupportsAtLeastOnce($supportsAtLeastOnce) { $this->supportsAtLeastOnce = $supportsAtLeastOnce; } /** * @return bool */ public function getSupportsAtLeastOnce() { return $this->supportsAtLeastOnce; } /** * @param bool */ public function setSupportsExactlyOnce($supportsExactlyOnce) { $this->supportsExactlyOnce = $supportsExactlyOnce; } /** * @return bool */ public function getSupportsExactlyOnce() { return $this->supportsExactlyOnce; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(TemplateMetadata::class, 'Google_Service_Dataflow_TemplateMetadata');