additionalBindings = $additionalBindings; } /** * @return HttpRule[] */ public function getAdditionalBindings() { return $this->additionalBindings; } /** * @param string */ public function setBody($body) { $this->body = $body; } /** * @return string */ public function getBody() { return $this->body; } /** * @param CustomHttpPattern */ public function setCustom(CustomHttpPattern $custom) { $this->custom = $custom; } /** * @return CustomHttpPattern */ public function getCustom() { return $this->custom; } /** * @param string */ public function setDelete($delete) { $this->delete = $delete; } /** * @return string */ public function getDelete() { return $this->delete; } /** * @param string */ public function setGet($get) { $this->get = $get; } /** * @return string */ public function getGet() { return $this->get; } /** * @param string */ public function setPatch($patch) { $this->patch = $patch; } /** * @return string */ public function getPatch() { return $this->patch; } /** * @param string */ public function setPost($post) { $this->post = $post; } /** * @return string */ public function getPost() { return $this->post; } /** * @param string */ public function setPut($put) { $this->put = $put; } /** * @return string */ public function getPut() { return $this->put; } /** * @param string */ public function setResponseBody($responseBody) { $this->responseBody = $responseBody; } /** * @return string */ public function getResponseBody() { return $this->responseBody; } /** * @param string */ public function setSelector($selector) { $this->selector = $selector; } /** * @return string */ public function getSelector() { return $this->selector; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(HttpRule::class, 'Google_Service_ServiceManagement_HttpRule');