registration.core.TokenMetadata
*/
class TokenMetadata extends \Google\Protobuf\Internal\Message
{
/**
* Generated from protobuf field string access_token = 1;
*/
protected $access_token = '';
/**
* Generated from protobuf field string refresh_token = 2;
*/
protected $refresh_token = '';
/**
* Generated from protobuf field int64 expires_at = 3;
*/
protected $expires_at = 0;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type string $access_token
* @type string $refresh_token
* @type int|string $expires_at
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Registration::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field string access_token = 1;
* @return string
*/
public function getAccessToken()
{
return $this->access_token;
}
/**
* Generated from protobuf field string access_token = 1;
* @param string $var
* @return $this
*/
public function setAccessToken($var)
{
GPBUtil::checkString($var, True);
$this->access_token = $var;
return $this;
}
/**
* Generated from protobuf field string refresh_token = 2;
* @return string
*/
public function getRefreshToken()
{
return $this->refresh_token;
}
/**
* Generated from protobuf field string refresh_token = 2;
* @param string $var
* @return $this
*/
public function setRefreshToken($var)
{
GPBUtil::checkString($var, True);
$this->refresh_token = $var;
return $this;
}
/**
* Generated from protobuf field int64 expires_at = 3;
* @return int|string
*/
public function getExpiresAt()
{
return $this->expires_at;
}
/**
* Generated from protobuf field int64 expires_at = 3;
* @param int|string $var
* @return $this
*/
public function setExpiresAt($var)
{
GPBUtil::checkInt64($var);
$this->expires_at = $var;
return $this;
}
}