Error.php
2.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<?php
namespace Cardinity\Method;
class Error extends ResultObject
{
/** @type string URL to error’s documentation page */
private $type;
/** @type string Title of an error */
private $title;
/** @type string HTTP response code */
private $status;
/** @type string Human readable information about the error */
private $detail;
/** @type array Optional. In case of validation errors all the fields with incorrect information are returned. */
private $errors = [];
/**
* Gets the value of type.
* @return mixed
*/
public function getType()
{
return $this->type;
}
/**
* Sets the value of type.
* @param mixed $type the type
* @return void
*/
public function setType($type)
{
$this->type = $type;
}
/**
* Gets the value of title.
* @return mixed
*/
public function getTitle()
{
return $this->title;
}
/**
* Sets the value of title.
* @param mixed $title the title
* @return void
*/
public function setTitle($title)
{
$this->title = $title;
}
/**
* Gets the value of status.
* @return mixed
*/
public function getStatus()
{
return $this->status;
}
/**
* Sets the value of status.
* @param mixed $status the status
* @return void
*/
public function setStatus($status)
{
$this->status = $status;
}
/**
* Gets the value of detail.
* @return mixed
*/
public function getDetail()
{
return $this->detail;
}
/**
* Sets the value of detail.
* @param mixed $detail the detail
* @return void
*/
public function setDetail($detail)
{
$this->detail = $detail;
}
/**
* Gets the value of errors.
* @return array
*/
public function getErrors()
{
return $this->errors;
}
/**
* Sets the value of errors.
* @param array $errors the errors
* @return void
*/
public function setErrors($errors)
{
$this->errors = $errors;
}
}