1c5e051eff0ae2d933f72f5d109076cc605b1649
[WP-Plugins/glm-member-db.git] /
1 <?php
2 namespace PayPal\Auth\Openid;
3 namespace PayPal\Common\PPModel;
4 /**
5  * Error resource
6  */
7 class PPOpenIdError extends PPModel {
8
9                 /**
10                  * A single ASCII error code from the following enum.
11                  * @param string $error
12                  */
13                  public function setError($error) {
14                         $this->error = $error;
15                         return $this;
16                  }
17                 
18                 /**
19                  * A single ASCII error code from the following enum.
20                  * @return string
21                  */
22                  public function getError() {
23                         return $this->error;
24                  }
25                  
26                 /**
27                  * A resource ID that indicates the starting resource in the returned results.
28                  * @param string $error_description
29                  */
30                  public function setErrorDescription($error_description) {
31                         $this->error_description = $error_description;
32                         return $this;
33                  }
34                 
35                 /**
36                  * A resource ID that indicates the starting resource in the returned results.
37                  * @return string
38                  */
39                  public function getErrorDescription() {
40                         return $this->error_description;
41                  }
42                  
43                 /**
44                  * A URI identifying a human-readable web page with information about the error, used to provide the client developer with additional information about the error.
45                  * @param string $error_uri
46                  */
47                  public function setErrorUri($error_uri) {
48                         $this->error_uri = $error_uri;
49                         return $this;
50                  }
51                 
52                 /**
53                  * A URI identifying a human-readable web page with information about the error, used to provide the client developer with additional information about the error.
54                  * @return string
55                  */
56                  public function getErrorUri() {
57                         return $this->error_uri;
58                  }
59                  
60
61 }