Google_ErrorProto
The Google Pagespeed Insights Google ErrorProto class.
Defined (1)
The class is defined in the following location(s).
- /google-api/src/contrib/Google_BigqueryService.php
- class Google_ErrorProto extends Google_Model {
- public $debugInfo;
- public $message;
- public $reason;
- public $location;
- public function setDebugInfo($debugInfo) {
- $this->debugInfo = $debugInfo;
- }
- public function getDebugInfo() {
- return $this->debugInfo;
- }
- public function setMessage($message) {
- $this->message = $message;
- }
- public function getMessage() {
- return $this->message;
- }
- public function setReason($reason) {
- $this->reason = $reason;
- }
- public function getReason() {
- return $this->reason;
- }
- public function setLocation($location) {
- $this->location = $location;
- }
- public function getLocation() {
- return $this->location;
- }
- }