| Current Path : /home/rtorresani/www/vendor/magento/module-adobe-ims-api/Api/ |
| Current File : //home/rtorresani/www/vendor/magento/module-adobe-ims-api/Api/GetAccessTokenInterface.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\AdobeImsApi\Api;
/**
* Declare functionality for getting user access token
* @api
*/
interface GetAccessTokenInterface
{
/**
* Get adobe access token for specified or current admin user
*
* @param int $adminUserId
* @return string|null
*/
public function execute(int $adminUserId = null): ?string;
}