edition = $edition; } /** * @deprecated * @return string */ public function getEdition() { return $this->edition; } /** * The simple name of this method. * * @param string $name */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * Any metadata attached to the method. * * @param Option[] $options */ public function setOptions($options) { $this->options = $options; } /** * @return Option[] */ public function getOptions() { return $this->options; } /** * If true, the request is streamed. * * @param bool $requestStreaming */ public function setRequestStreaming($requestStreaming) { $this->requestStreaming = $requestStreaming; } /** * @return bool */ public function getRequestStreaming() { return $this->requestStreaming; } /** * A URL of the input message type. * * @param string $requestTypeUrl */ public function setRequestTypeUrl($requestTypeUrl) { $this->requestTypeUrl = $requestTypeUrl; } /** * @return string */ public function getRequestTypeUrl() { return $this->requestTypeUrl; } /** * If true, the response is streamed. * * @param bool $responseStreaming */ public function setResponseStreaming($responseStreaming) { $this->responseStreaming = $responseStreaming; } /** * @return bool */ public function getResponseStreaming() { return $this->responseStreaming; } /** * The URL of the output message type. * * @param string $responseTypeUrl */ public function setResponseTypeUrl($responseTypeUrl) { $this->responseTypeUrl = $responseTypeUrl; } /** * @return string */ public function getResponseTypeUrl() { return $this->responseTypeUrl; } /** * The source syntax of this method. This field should be ignored, instead the * syntax should be inherited from Api. This is similar to Field and * EnumValue. * * Accepted values: SYNTAX_PROTO2, SYNTAX_PROTO3, SYNTAX_EDITIONS * * @deprecated * @param self::SYNTAX_* $syntax */ public function setSyntax($syntax) { $this->syntax = $syntax; } /** * @deprecated * @return self::SYNTAX_* */ public function getSyntax() { return $this->syntax; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Method::class, 'Google_Service_ServiceConsumerManagement_Method');