aboutsummaryrefslogtreecommitdiffstats
path: root/apps/dav/lib/Db/Direct.php
blob: 377a120c436494b31a42ea24c5439db54c8f90b7 (plain)
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
<?php

declare(strict_types=1);

/**
 * SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
 * SPDX-License-Identifier: AGPL-3.0-or-later
 */
namespace OCA\DAV\Db;

use OCP\AppFramework\Db\Entity;

/**
 * @method string getUserId()
 * @method void setUserId(string $userId)
 * @method int getFileId()
 * @method void setFileId(int $fileId)
 * @method string getToken()
 * @method void setToken(string $token)
 * @method int getExpiration()
 * @method void setExpiration(int $expiration)
 */
class Direct extends Entity {
	/** @var string */
	protected $userId;

	/** @var int */
	protected $fileId;

	/** @var string */
	protected $token;

	/** @var int */
	protected $expiration;

	public function __construct() {
		$this->addType('userId', 'string');
		$this->addType('fileId', 'int');
		$this->addType('token', 'string');
		$this->addType('expiration', 'int');
	}
}