![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/csharpru/vault-php/src/ResponseModels/ |
<?php namespace Vault\ResponseModels; use Vault\BaseObject; use Vault\ResponseModels\Traits\LeaseTrait; /** * Class Response * * @package Vault\Model */ class Response extends BaseObject { use LeaseTrait; /** * @var string|null */ protected $requestId; /** * @var Auth|null */ protected $auth; /** * @var array|null */ protected $data = []; /** * @return string|null */ public function getRequestId(): ?string { return $this->requestId; } /** * @return Auth|null */ public function getAuth(): ?Auth { return $this->auth; } /** * @return array|null */ public function getData(): ?array { return $this->data; } }