1 | <?php declare(strict_types=1); |
||
16 | class Token extends OperatorResource implements \OpenStack\Common\Auth\Token |
||
17 | { |
||
18 | /** @var \DateTimeImmutable */ |
||
19 | public $issuedAt; |
||
20 | |||
21 | /** @var string */ |
||
22 | public $id; |
||
23 | |||
24 | /** @var \DateTimeImmutable */ |
||
25 | public $expires; |
||
26 | |||
27 | /** @var Tenant */ |
||
28 | public $tenant; |
||
29 | |||
30 | /** |
||
31 | * @inheritdoc |
||
32 | */ |
||
33 | protected function getAliases(): array |
||
41 | 1 | ||
42 | /** |
||
43 | 1 | * {@inheritDoc} |
|
44 | */ |
||
45 | public function populateFromResponse(ResponseInterface $response): self |
||
51 | |||
52 | public function getId(): string |
||
56 | |||
57 | public function hasExpired(): bool |
||
61 | } |
||
62 |