friendica/src/Object/Api/Mastodon/Token.php

58 lines
1.6 KiB
PHP
Raw Normal View History

2021-05-13 11:26:56 +00:00
<?php
/**
2023-01-01 14:36:24 +00:00
* @copyright Copyright (C) 2010-2023, the Friendica project
2021-05-13 11:26:56 +00:00
*
* @license GNU AGPL version 3 or any later version
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
*/
namespace Friendica\Object\Api\Mastodon;
use Friendica\BaseDataTransferObject;
/**
2021-06-18 05:50:52 +00:00
* Class Token
2021-05-13 11:26:56 +00:00
*
2021-06-18 05:50:52 +00:00
* @see https://docs.joinmastodon.org/entities/token/
2021-05-13 11:26:56 +00:00
*/
class Token extends BaseDataTransferObject
{
/** @var string */
protected $access_token;
/** @var string */
protected $token_type;
/** @var string */
protected $scope;
2021-06-18 03:21:38 +00:00
/** @var int (timestamp) */
2021-05-13 11:26:56 +00:00
protected $created_at;
/**
* Creates a token record
*
2021-05-13 11:33:07 +00:00
* @param string $access_token
* @param string $token_type
* @param string $scope
* @param string $created_at
2021-05-13 11:26:56 +00:00
*/
public function __construct(string $access_token, string $token_type, string $scope, string $created_at)
{
$this->access_token = $access_token;
$this->token_type = $token_type;
$this->scope = $scope;
2021-06-18 03:21:38 +00:00
$this->created_at = strtotime($created_at);
2021-05-13 11:26:56 +00:00
}
}