PATH:
usr
/
local
/
jetapps
/
var
/
lib
/
3rdparty
/
dropbox
/
src
/
Models
<?php namespace Kunnu\Dropbox\Models; class AccessToken extends BaseModel { /** * Access Token * * @var string */ protected $token; /** * 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; protected $refreshToken; protected $expiresIn; /** * 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->refreshToken = $this->getDataProperty('refresh_token'); $this->expiresIn = $this->getDataProperty('expires_in'); } /** * Get Access Token * * @return string */ public function getToken() { return $this->token; } public function getRefreshToken() { return $this->refreshToken; } public function getExpiresIn() { return $this->expiresIn; } /** * 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; } }
[-] FolderMetadata.php
[edit]
[-] MediaMetadata.php
[edit]
[-] File.php
[edit]
[-] ModelInterface.php
[edit]
[+]
..
[-] ModelCollection.php
[edit]
[-] VideoMetadata.php
[edit]
[-] DeletedMetadata.php
[edit]
[-] MediaInfo.php
[edit]
[-] Thumbnail.php
[edit]
[-] Account.php
[edit]
[-] AccountList.php
[edit]
[-] AccessToken.php
[edit]
[-] FolderSharingInfo.php
[edit]
[-] CopyReference.php
[edit]
[-] BaseModel.php
[edit]
[-] SearchResult.php
[edit]
[-] SearchResults.php
[edit]
[-] FileSharingInfo.php
[edit]
[-] ModelFactory.php
[edit]
[-] TemporaryLink.php
[edit]
[-] MetadataCollection.php
[edit]
[-] PhotoMetadata.php
[edit]
[-] FileMetadata.php
[edit]