![]() 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/magento/module-adobe-ims-api/Api/Data/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\AdobeImsApi\Api\Data; use Magento\Framework\Api\ExtensibleDataInterface; /** * Declare the user profile data service object * @api */ interface UserProfileInterface extends ExtensibleDataInterface { /** * Get ID * * @return int|null */ public function getId(); /** * Get user ID * * @return int|null */ public function getUserId(): ?int; /** * Set user ID * * @param int $value * @return void */ public function setUserId(int $value): void; /** * Get name * * @return string|null */ public function getName(): ?string; /** * Set name * * @param string $value * @return void */ public function setName(string $value): void; /** * Set email * * @param string $value * @return void */ public function setEmail(string $value): void; /** * Get email * * @return string|null */ public function getEmail(): ?string; /** * Get user profile image. * * @return string|null */ public function getImage(): ?string; /** * Set's user profile image. * * @param string $value * @return void */ public function setImage(string $value): void; /** * Get account type * * @return string|null */ public function getAccountType(): ?string; /** * Set account type * * @param string $value * @return void */ public function setAccountType(string $value): void; /** * Get access token * * @return string|null */ public function getAccessToken(): ?string; /** * Set access token * * @param string $value * @return void */ public function setAccessToken(string $value): void; /** * Get refresh token * * @return string|null */ public function getRefreshToken(): ?string; /** * Set refresh token * * @param string $value * @return void */ public function setRefreshToken(string $value): void; /** * Get creation time * * @return string|null */ public function getCreatedAt(): ?string; /** * Set creation time * * @param string $value * @return void */ public function setCreatedAt(string $value): void; /** * Get update time * * @return string|null */ public function getUpdatedAt(): ?string; /** * Set update time * * @param string $value * @return void */ public function setUpdatedAt(string $value): void; /** * Get expires time of token * * @return string|null */ public function getAccessTokenExpiresAt(): ?string; /** * Set expires time of token * * @param string $value * @return void */ public function setAccessTokenExpiresAt(string $value): void; /** * Retrieve existing extension attributes object or create a new one. * * @return \Magento\AdobeImsApi\Api\Data\UserProfileExtensionInterface */ public function getExtensionAttributes(): UserProfileExtensionInterface; /** * Set extension attributes * * @param \Magento\AdobeImsApi\Api\Data\UserProfileExtensionInterface $extensionAttributes * @return void */ public function setExtensionAttributes(UserProfileExtensionInterface $extensionAttributes): void; }