| Current Path : /home/rtorresani/www/vendor/magento/module-jwt-user-token/Api/Data/ |
| Current File : //home/rtorresani/www/vendor/magento/module-jwt-user-token/Api/Data/JwtTokenDataInterface.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\JwtUserToken\Api\Data;
use Magento\Framework\Jwt\HeaderInterface;
use Magento\Framework\Jwt\Payload\ClaimsPayloadInterface;
use Magento\Integration\Api\Data\UserTokenDataInterface;
/**
* Adds JWT data retrieved from a token.
*/
interface JwtTokenDataInterface extends UserTokenDataInterface
{
public function getJwtHeader(): HeaderInterface;
public function getJwtClaims(): ClaimsPayloadInterface;
}