-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCheckoutResponse.php
More file actions
executable file
·134 lines (122 loc) · 2.23 KB
/
CheckoutResponse.php
File metadata and controls
executable file
·134 lines (122 loc) · 2.23 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<?php
/**
* Arikaim
*
* @link http://www.arikaim.com
* @copyright Copyright (c) Konstantin Atanasov <info@arikaim.com>
* @license http://www.arikaim.com/license
*
*/
namespace Arikaim\Modules\Checkout;
/**
* Checkout response class
*/
class CheckoutResponse
{
/**
* Error
*
* @var string|null
*/
protected $error = null;
/**
* Redirect url
*
* @var string|null
*/
protected $redirectUrl = null;
/**
* Get token
*
* @var string|null
*/
protected $token = null;
/**
* Return true if has error
*
* @return boolean
*/
public function hasError(): bool
{
return !empty($this->error);
}
/**
* Convert to array
*
* @return array
*/
public function toArray(): array
{
return [
'redirect' => $this->isRedirect(),
'redirect_url' => $this->redirectUrl,
'token' => $this->token
];
}
/**
* Return true if has redirect url
*
* @return boolean
*/
public function isRedirect(): bool
{
return (empty($this->getRedirectUrl()) == false);
}
/**
* Get redirect url
*
* @return string|null
*/
public function getRedirectUrl(): ?string
{
return $this->redirectUrl;
}
/**
* Get checkout token
*
* @return string|null
*/
public function getToken(): ?string
{
return $this->token;
}
/**
* Set redirect url
*
* @param string $url
* @return void
*/
public function setRedirectUrl(string $url): void
{
$this->redirectUrl = $url;
}
/**
* Set token
*
* @param string|null $token
* @return void
*/
public function setToken(?string $token): void
{
$this->token = $token;
}
/**
* Set error
*
* @param string|null $error
* @return void
*/
public function setError(?string $error): void
{
$this->error = $error;
}
/**
* Get error message
*
* @return string|null
*/
public function getError(): ?string
{
return $this->error;
}
}