Your IP : 216.73.216.220


Current Path : /var/www/html/vendor/csharpru/vault-php/src/ResponseModels/
Upload File :
Current File : /var/www/html/vendor/csharpru/vault-php/src/ResponseModels/Auth.php

<?php

namespace Vault\ResponseModels;

use Vault\BaseObject;
use Vault\ResponseModels\Traits\LeaseTrait;

/**
 * Class Auth
 *
 * @package Vault\Model
 */
class Auth extends BaseObject
{
    use LeaseTrait;

    /**
     * @var string|null
     */
    protected $clientToken;

    /**
     * @return string|null
     */
    public function getClientToken(): ?string
    {
        return $this->clientToken;
    }
}