-
Notifications
You must be signed in to change notification settings - Fork 180
/
Copy pathAccessToken.php
160 lines (142 loc) · 2.56 KB
/
AccessToken.php
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<?php
namespace Kunnu\Dropbox\Models;
class AccessToken extends BaseModel
{
/**
* Access Token
*
* @var string
*/
protected $token;
/**
* Refresh Token
*
* @var string
*/
protected $refreshToken;
/**
* Expiry Time for the token
*
* @var string
*/
protected $expiryTime;
/**
* Token Type
*
* @var string
*/
protected $tokenType;
/**
* Bearer
*
* @var string
*/
protected $bearer;
/**
* User ID
*
* @var string
*/
protected $uid;
/**
* Account ID
*
* @var string
*/
protected $accountId;
/**
* Team ID
*
* @var string
*/
protected $teamId;
/**
* Create a new AccessToken instance
*
* @param array $data
*/
public function __construct(array $data)
{
parent::__construct($data);
$this->token = $this->getDataProperty('access_token');
$this->tokenType = $this->getDataProperty('token_type');
$this->bearer = $this->getDataProperty('bearer');
$this->uid = $this->getDataProperty('uid');
$this->accountId = $this->getDataProperty('account_id');
$this->teamId = $this->getDataProperty('team_id');
$this->expiryTime = $this->getDataProperty('expires_in');
$this->refreshToken = $this->getDataProperty('refresh_token');
}
/**
* Get Access Token
*
* @return string
*/
public function getToken()
{
return $this->token;
}
/**
* Get Refresh Token
*
* @return string
*/
public function getRefreshToken()
{
return $this->refreshToken;
}
/**
* Get the expiry time
*
* @return int
*/
public function getExpiryTime()
{
return (int) $this->expiryTime;
}
/**
* Get Token Type
*
* @return string
*/
public function getTokenType()
{
return $this->tokenType;
}
/**
* Get Bearer
*
* @return string
*/
public function getBearer()
{
return $this->bearer;
}
/**
* Get User ID
*
* @return string
*/
public function getUid()
{
return $this->uid;
}
/**
* Get Account ID
*
* @return string
*/
public function getAccountId()
{
return $this->accountId;
}
/**
* Get Team ID
*
* @return string
*/
public function getTeamId()
{
return $this->teamId;
}
}