Current File : /home/kelaby89/www/wp/wp-content/plugins/wp-reset/libs/pCloud-eu/User.php |
<?php
namespace pCloud;
class User {
private $request;
private $userInfo;
function __construct() {
$this->request = new Request();
$this->userInfo = $this->request->get("userinfo");
}
public function getUserInfo() {
return $this->userInfo;
}
public function getUserId() {
return $this->userInfo->userid;
}
public function getUserEmail() {
return $this->userInfo->email;
}
public function getUsedQuota() {
return $this->userInfo->usedquota;
}
public function getQuota() {
return $this->userInfo->quota;
}
public function getPublicLinkQuota() {
return $this->userInfo->publiclinkquota;
}
}