![]() 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/cartforge.co/vendor/magento/module-adobe-ims/Model/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\AdobeIms\Model; use Magento\AdobeIms\Model\ResourceModel\UserProfile as UserProfileResource; use Magento\AdobeImsApi\Api\Data\UserProfileInterface; use Magento\Framework\Model\AbstractExtensibleModel; use Magento\AdobeImsApi\Api\Data\UserProfileExtensionInterface; /** * Represent the user profile service data class */ class UserProfile extends AbstractExtensibleModel implements UserProfileInterface { /** * Constants for keys of data array. Identical to the name of the getter in snake case */ private const USER_ID = 'admin_user_id'; private const NAME = 'name'; private const EMAIL = 'email'; private const IMAGE = 'image'; private const ACCOUNT_TYPE = 'account_type'; private const ACCESS_TOKEN = 'access_token'; private const REFRESH_TOKEN = 'refresh_token'; private const CREATED_AT = 'created_at'; private const UPDATED_AT = 'updated_at'; private const ACCESS_TOKEN_EXPIRES_AT = 'access_token_expires_at'; /** * @inheritdoc */ protected function _construct(): void { $this->_init(UserProfileResource::class); } /** * @inheritdoc */ public function getUserId(): ?int { return $this->getData(self::USER_ID); } /** * @inheritdoc */ public function setUserId(int $value): void { $this->setData(self::USER_ID, $value); } /** * @inheritdoc */ public function getName(): ?string { return $this->getData(self::NAME); } /** * @inheritdoc */ public function setName(string $value): void { $this->setData(self::NAME, $value); } /** * @inheritdoc */ public function getEmail(): ?string { return $this->getData(self::EMAIL); } /** * @inheritdoc */ public function getImage(): ?string { return $this->getData(self::IMAGE); } /** * @inheritdoc */ public function setImage(string $value): void { $this->setData(self::IMAGE, $value); } /** * @inheritdoc */ public function setEmail(string $value): void { $this->setData(self::EMAIL, $value); } /** * @inheritdoc */ public function getAccountType(): ?string { return $this->getData(self::ACCOUNT_TYPE); } /** * @inheritdoc */ public function setAccountType(string $value): void { $this->setData(self::ACCOUNT_TYPE, $value); } /** * @inheritdoc */ public function getAccessToken(): ?string { return $this->getData(self::ACCESS_TOKEN); } /** * @inheritdoc */ public function setAccessToken(string $value): void { $this->setData(self::ACCESS_TOKEN, $value); } /** * @inheritdoc */ public function getRefreshToken(): ?string { return $this->getData(self::REFRESH_TOKEN); } /** * @inheritdoc */ public function setRefreshToken(string $value): void { $this->setData(self::REFRESH_TOKEN, $value); } /** * @inheritdoc */ public function getCreatedAt(): ?string { return $this->getData(self::CREATED_AT); } /** * @inheritdoc */ public function setCreatedAt(string $value): void { $this->setData(self::CREATED_AT, $value); } /** * @inheritdoc */ public function getUpdatedAt(): ?string { return $this->getData(self::UPDATED_AT); } /** * @inheritdoc */ public function setUpdatedAt(string $value): void { $this->setData(self::UPDATED_AT, $value); } /** * @inheritdoc */ public function getAccessTokenExpiresAt(): ?string { return $this->getData(self::ACCESS_TOKEN_EXPIRES_AT); } /** * @inheritdoc */ public function setAccessTokenExpiresAt(string $value): void { $this->setData(self::ACCESS_TOKEN_EXPIRES_AT, $value); } /** * @inheritdoc */ public function getExtensionAttributes(): UserProfileExtensionInterface { return $this->_getExtensionAttributes(); } /** * @inheritdoc */ public function setExtensionAttributes(UserProfileExtensionInterface $extensionAttributes): void { $this->_setExtensionAttributes($extensionAttributes); } }