httpStatusCode = $httpStatusCode; } /** * @return int */ public function getHttpStatusCode() { return $this->httpStatusCode; } /** * @param Person */ public function setPerson(Person $person) { $this->person = $person; } /** * @return Person */ public function getPerson() { return $this->person; } /** * @param string */ public function setRequestedResourceName($requestedResourceName) { $this->requestedResourceName = $requestedResourceName; } /** * @return string */ public function getRequestedResourceName() { return $this->requestedResourceName; } /** * @param Status */ public function setStatus(Status $status) { $this->status = $status; } /** * @return Status */ public function getStatus() { return $this->status; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(PersonResponse::class, 'Google_Service_PeopleService_PersonResponse');