2 namespace PayPal\Auth\Openid;
3 namespace PayPal\Common\PPModel;
7 class PPOpenIdError extends PPModel {
10 * A single ASCII error code from the following enum.
11 * @param string $error
13 public function setError($error) {
14 $this->error = $error;
19 * A single ASCII error code from the following enum.
22 public function getError() {
27 * A resource ID that indicates the starting resource in the returned results.
28 * @param string $error_description
30 public function setErrorDescription($error_description) {
31 $this->error_description = $error_description;
36 * A resource ID that indicates the starting resource in the returned results.
39 public function getErrorDescription() {
40 return $this->error_description;
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
47 public function setErrorUri($error_uri) {
48 $this->error_uri = $error_uri;
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.
56 public function getErrorUri() {
57 return $this->error_uri;