<?php
namespace Proxies\__CG__\Cms\TenantBundle\Entity;
/**
* DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR
*/
class Tenant extends \Cms\TenantBundle\Entity\Tenant implements \Doctrine\ORM\Proxy\Proxy
{
/**
* @var \Closure the callback responsible for loading properties in the proxy object. This callback is called with
* three parameters, being respectively the proxy object to be initialized, the method that triggered the
* initialization process and an array of ordered parameters that were passed to that method.
*
* @see \Doctrine\Common\Proxy\Proxy::__setInitializer
*/
public $__initializer__;
/**
* @var \Closure the callback responsible of loading properties that need to be copied in the cloned object
*
* @see \Doctrine\Common\Proxy\Proxy::__setCloner
*/
public $__cloner__;
/**
* @var boolean flag indicating if this object was already initialized
*
* @see \Doctrine\Persistence\Proxy::__isInitialized
*/
public $__isInitialized__ = false;
/**
* @var array<string, null> properties to be lazy loaded, indexed by property name
*/
public static $lazyPropertiesNames = array (
);
/**
* @var array<string, mixed> default values of properties to be lazy loaded, with keys being the property names
*
* @see \Doctrine\Common\Proxy\Proxy::__getLazyProperties
*/
public static $lazyPropertiesDefaults = array (
);
public function __construct(?\Closure $initializer = null, ?\Closure $cloner = null)
{
$this->__initializer__ = $initializer;
$this->__cloner__ = $cloner;
}
/**
*
* @return array
*/
public function __sleep()
{
if ($this->__isInitialized__) {
return ['__isInitialized__', 'name', 'slug', 'status', 'emailsDisplay', 'locale', 'policy', 'disqusId', 'googleToken', 'stage', 'teamworkTasklist', 'latitude', 'longitude', 'redirects', 'redirectCodes', 'debugging', 'products', 'adaSettings', 'type', 'hubspotId', 'weglotId', 'locales', 'id', 'uid', 'createdAt', 'updatedAt', 'touchedAt', '' . "\0" . 'Cms\\TenantBundle\\Entity\\Tenant' . "\0" . 'timestampable', 'data_custom0', 'data_custom1', 'data_custom2', 'data_custom3', 'authenticationTypes', 'classlinkCustomerId', 'cleverCustomerId', 'gg4lCustomerId', 'googleCustomerId', 'microsoftCustomerId', 'ulid', '_ulid'];
}
return ['__isInitialized__', 'name', 'slug', 'status', 'emailsDisplay', 'locale', 'policy', 'disqusId', 'googleToken', 'stage', 'teamworkTasklist', 'latitude', 'longitude', 'redirects', 'redirectCodes', 'debugging', 'products', 'adaSettings', 'type', 'hubspotId', 'weglotId', 'locales', 'id', 'uid', 'createdAt', 'updatedAt', 'touchedAt', '' . "\0" . 'Cms\\TenantBundle\\Entity\\Tenant' . "\0" . 'timestampable', 'data_custom0', 'data_custom1', 'data_custom2', 'data_custom3', 'authenticationTypes', 'classlinkCustomerId', 'cleverCustomerId', 'gg4lCustomerId', 'googleCustomerId', 'microsoftCustomerId', 'ulid', '_ulid'];
}
/**
*
*/
public function __wakeup()
{
if ( ! $this->__isInitialized__) {
$this->__initializer__ = function (Tenant $proxy) {
$proxy->__setInitializer(null);
$proxy->__setCloner(null);
$existingProperties = get_object_vars($proxy);
foreach ($proxy::$lazyPropertiesDefaults as $property => $defaultValue) {
if ( ! array_key_exists($property, $existingProperties)) {
$proxy->$property = $defaultValue;
}
}
};
}
}
/**
*
*/
public function __clone()
{
$this->__cloner__ && $this->__cloner__->__invoke($this, '__clone', []);
}
/**
* Forces initialization of the proxy
*/
public function __load(): void
{
$this->__initializer__ && $this->__initializer__->__invoke($this, '__load', []);
}
/**
* {@inheritDoc}
* @internal generated method: use only when explicitly handling proxy specific loading logic
*/
public function __isInitialized(): bool
{
return $this->__isInitialized__;
}
/**
* {@inheritDoc}
* @internal generated method: use only when explicitly handling proxy specific loading logic
*/
public function __setInitialized($initialized): void
{
$this->__isInitialized__ = $initialized;
}
/**
* {@inheritDoc}
* @internal generated method: use only when explicitly handling proxy specific loading logic
*/
public function __setInitializer(?\Closure $initializer = null): void
{
$this->__initializer__ = $initializer;
}
/**
* {@inheritDoc}
* @internal generated method: use only when explicitly handling proxy specific loading logic
*/
public function __getInitializer(): ?\Closure
{
return $this->__initializer__;
}
/**
* {@inheritDoc}
* @internal generated method: use only when explicitly handling proxy specific loading logic
*/
public function __setCloner(?\Closure $cloner = null): void
{
$this->__cloner__ = $cloner;
}
/**
* {@inheritDoc}
* @internal generated method: use only when explicitly handling proxy specific cloning logic
*/
public function __getCloner(): ?\Closure
{
return $this->__cloner__;
}
/**
* {@inheritDoc}
* @internal generated method: use only when explicitly handling proxy specific loading logic
* @deprecated no longer in use - generated code now relies on internal components rather than generated public API
* @static
*/
public function __getLazyProperties(): array
{
return self::$lazyPropertiesDefaults;
}
/**
* {@inheritDoc}
*/
public function hasRedirectCodes(): bool
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'hasRedirectCodes', []);
return parent::hasRedirectCodes();
}
/**
* {@inheritDoc}
*/
public function setRedirectCodes(bool $redirectCodes): \Cms\TenantBundle\Entity\Tenant
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setRedirectCodes', [$redirectCodes]);
return parent::setRedirectCodes($redirectCodes);
}
/**
* {@inheritDoc}
*/
public function getWeglotId(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getWeglotId', []);
return parent::getWeglotId();
}
/**
* {@inheritDoc}
*/
public function setWeglotId(?string $weglotId): \Cms\TenantBundle\Entity\Tenant
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setWeglotId', [$weglotId]);
return parent::setWeglotId($weglotId);
}
/**
* {@inheritDoc}
*/
public function getEmailsDisplay(): int
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getEmailsDisplay', []);
return parent::getEmailsDisplay();
}
/**
* {@inheritDoc}
*/
public function setEmailsDisplay(int $value): \Cms\TenantBundle\Entity\Tenant
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setEmailsDisplay', [$value]);
return parent::setEmailsDisplay($value);
}
/**
* {@inheritDoc}
*/
public function isEmailsDisplay($value): bool
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'isEmailsDisplay', [$value]);
return parent::isEmailsDisplay($value);
}
/**
* {@inheritDoc}
*/
public function getType()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getType', []);
return parent::getType();
}
/**
* {@inheritDoc}
*/
public function setType(\Cms\TenantBundle\Entity\TenantTypeEmbeddable $value)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setType', [$value]);
return parent::setType($value);
}
/**
* {@inheritDoc}
*/
public function getProducts()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getProducts', []);
return parent::getProducts();
}
/**
* {@inheritDoc}
*/
public function setProducts(\Cms\TenantBundle\Model\ProductsBitwise $value)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setProducts', [$value]);
return parent::setProducts($value);
}
/**
* {@inheritDoc}
*/
public function getName()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getName', []);
return parent::getName();
}
/**
* {@inheritDoc}
*/
public function getSlug()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getSlug', []);
return parent::getSlug();
}
/**
* {@inheritDoc}
*/
public function getStatus()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getStatus', []);
return parent::getStatus();
}
/**
* {@inheritDoc}
*/
public function setName($value)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setName', [$value]);
return parent::setName($value);
}
/**
* {@inheritDoc}
*/
public function setSlug($value)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setSlug', [$value]);
return parent::setSlug($value);
}
/**
* {@inheritDoc}
*/
public function setStatus($value)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setStatus', [$value]);
return parent::setStatus($value);
}
/**
* {@inheritDoc}
*/
public function getLocale()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getLocale', []);
return parent::getLocale();
}
/**
* {@inheritDoc}
*/
public function setLocale(\Cms\CoreBundle\Entity\LocaleSettings $locale)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setLocale', [$locale]);
return parent::setLocale($locale);
}
/**
* {@inheritDoc}
*/
public function getPolicy()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getPolicy', []);
return parent::getPolicy();
}
/**
* {@inheritDoc}
*/
public function setPolicy(\DateTime $policy)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setPolicy', [$policy]);
return parent::setPolicy($policy);
}
/**
* {@inheritDoc}
*/
public function getDisqusId()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getDisqusId', []);
return parent::getDisqusId();
}
/**
* {@inheritDoc}
*/
public function setDisqusId($disqusId)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setDisqusId', [$disqusId]);
return parent::setDisqusId($disqusId);
}
/**
* {@inheritDoc}
*/
public function getGoogleToken()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getGoogleToken', []);
return parent::getGoogleToken();
}
/**
* {@inheritDoc}
*/
public function setGoogleToken($value = NULL)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setGoogleToken', [$value]);
return parent::setGoogleToken($value);
}
/**
* {@inheritDoc}
*/
public function getStage()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getStage', []);
return parent::getStage();
}
/**
* {@inheritDoc}
*/
public function setStage($stage)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setStage', [$stage]);
return parent::setStage($stage);
}
/**
* {@inheritDoc}
*/
public function getTeamworkTasklist()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getTeamworkTasklist', []);
return parent::getTeamworkTasklist();
}
/**
* {@inheritDoc}
*/
public function setTeamworkTasklist($teamworkTasklist)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setTeamworkTasklist', [$teamworkTasklist]);
return parent::setTeamworkTasklist($teamworkTasklist);
}
/**
* {@inheritDoc}
*/
public function getLatitude()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getLatitude', []);
return parent::getLatitude();
}
/**
* {@inheritDoc}
*/
public function setLatitude($value)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setLatitude', [$value]);
return parent::setLatitude($value);
}
/**
* {@inheritDoc}
*/
public function getLongitude()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getLongitude', []);
return parent::getLongitude();
}
/**
* {@inheritDoc}
*/
public function setLongitude($value)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setLongitude', [$value]);
return parent::setLongitude($value);
}
/**
* {@inheritDoc}
*/
public function getRedirects()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getRedirects', []);
return parent::getRedirects();
}
/**
* {@inheritDoc}
*/
public function setRedirects($value)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setRedirects', [$value]);
return parent::setRedirects($value);
}
/**
* {@inheritDoc}
*/
public function getDebugging()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getDebugging', []);
return parent::getDebugging();
}
/**
* {@inheritDoc}
*/
public function setDebugging($value)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setDebugging', [$value]);
return parent::setDebugging($value);
}
/**
* {@inheritDoc}
*/
public function getAdaSettings()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getAdaSettings', []);
return parent::getAdaSettings();
}
/**
* {@inheritDoc}
*/
public function getHubspotId(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getHubspotId', []);
return parent::getHubspotId();
}
/**
* {@inheritDoc}
*/
public function setHubspotId(?string $hubspotId): \Cms\TenantBundle\Entity\Tenant
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setHubspotId', [$hubspotId]);
return parent::setHubspotId($hubspotId);
}
/**
* {@inheritDoc}
*/
public function getTenant(): ?\Cms\TenantBundle\Entity\Tenant
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getTenant', []);
return parent::getTenant();
}
/**
* {@inheritDoc}
*/
public function isSchoolNow(): bool
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'isSchoolNow', []);
return parent::isSchoolNow();
}
/**
* {@inheritDoc}
*/
public function getLocales(): array
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getLocales', []);
return parent::getLocales();
}
/**
* {@inheritDoc}
*/
public function setLocales(array $locales): \Cms\TenantBundle\Entity\Tenant
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setLocales', [$locales]);
return parent::setLocales($locales);
}
/**
* {@inheritDoc}
*/
public function isPrimaryLocale(string $locale): bool
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'isPrimaryLocale', [$locale]);
return parent::isPrimaryLocale($locale);
}
/**
* {@inheritDoc}
*/
public function getPrimaryLocale(): string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getPrimaryLocale', []);
return parent::getPrimaryLocale();
}
/**
* {@inheritDoc}
*/
public function setPrimaryLocale(string $locale): \Cms\TenantBundle\Entity\Tenant
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setPrimaryLocale', [$locale]);
return parent::setPrimaryLocale($locale);
}
/**
* {@inheritDoc}
*/
public function isSecondaryLocale(string $locale): bool
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'isSecondaryLocale', [$locale]);
return parent::isSecondaryLocale($locale);
}
/**
* {@inheritDoc}
*/
public function getSecondaryLocales(): array
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getSecondaryLocales', []);
return parent::getSecondaryLocales();
}
/**
* {@inheritDoc}
*/
public function getTimezone(): string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getTimezone', []);
return parent::getTimezone();
}
/**
* {@inheritDoc}
*/
public function getId()
{
if ($this->__isInitialized__ === false) {
return (int) parent::getId();
}
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', []);
return parent::getId();
}
/**
* {@inheritDoc}
*/
public function getUid()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getUid', []);
return parent::getUid();
}
/**
* {@inheritDoc}
*/
public function getUidString(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getUidString', []);
return parent::getUidString();
}
/**
* {@inheritDoc}
*/
public function getUidBytes(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getUidBytes', []);
return parent::getUidBytes();
}
/**
* {@inheritDoc}
*/
public function getUidHex(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getUidHex', []);
return parent::getUidHex();
}
/**
* {@inheritDoc}
*/
public function initUid(\Ramsey\Uuid\UuidInterface $value)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'initUid', [$value]);
return parent::initUid($value);
}
/**
* {@inheritDoc}
*/
public function forceUid(\Ramsey\Uuid\UuidInterface $value)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'forceUid', [$value]);
return parent::forceUid($value);
}
/**
* {@inheritDoc}
*/
public function forceId(int $value): \Cms\TenantBundle\Entity\Tenant
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'forceId', [$value]);
return parent::forceId($value);
}
/**
* {@inheritDoc}
*/
public function resetIdentifiable()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'resetIdentifiable', []);
return parent::resetIdentifiable();
}
/**
* {@inheritDoc}
*/
public function isUpdated(): bool
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'isUpdated', []);
return parent::isUpdated();
}
/**
* {@inheritDoc}
*/
public function isCreated(): bool
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'isCreated', []);
return parent::isCreated();
}
/**
* {@inheritDoc}
*/
public function getTimestampedAt(): ?\DateTime
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getTimestampedAt', []);
return parent::getTimestampedAt();
}
/**
* {@inheritDoc}
*/
public function resetTimestampable(): \Cms\TenantBundle\Entity\Tenant
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'resetTimestampable', []);
return parent::resetTimestampable();
}
/**
* {@inheritDoc}
*/
public function autoCreatedAt(?bool $value = NULL): bool
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'autoCreatedAt', [$value]);
return parent::autoCreatedAt($value);
}
/**
* {@inheritDoc}
*/
public function autoUpdatedAt(?bool $value = NULL): bool
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'autoUpdatedAt', [$value]);
return parent::autoUpdatedAt($value);
}
/**
* {@inheritDoc}
*/
public function getCreatedAt(): ?\DateTime
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreatedAt', []);
return parent::getCreatedAt();
}
/**
* {@inheritDoc}
*/
public function setCreatedAt(?\DateTime $value = NULL, bool $auto = true): \Cms\TenantBundle\Entity\Tenant
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreatedAt', [$value, $auto]);
return parent::setCreatedAt($value, $auto);
}
/**
* {@inheritDoc}
*/
public function getUpdatedAt(): ?\DateTime
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getUpdatedAt', []);
return parent::getUpdatedAt();
}
/**
* {@inheritDoc}
*/
public function setUpdatedAt(?\DateTime $value = NULL, bool $auto = true): \Cms\TenantBundle\Entity\Tenant
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setUpdatedAt', [$value, $auto]);
return parent::setUpdatedAt($value, $auto);
}
/**
* {@inheritDoc}
*/
public function observeUpdatedAt(bool $toggle): \Cms\TenantBundle\Entity\Tenant
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'observeUpdatedAt', [$toggle]);
return parent::observeUpdatedAt($toggle);
}
/**
* {@inheritDoc}
*/
public function getTouchedAt(): ?\DateTime
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getTouchedAt', []);
return parent::getTouchedAt();
}
/**
* {@inheritDoc}
*/
public function setTouchedAt(?\DateTime $value = NULL): \Cms\TenantBundle\Entity\Tenant
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setTouchedAt', [$value]);
return parent::setTouchedAt($value);
}
/**
* {@inheritDoc}
*/
public function getCustom0()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getCustom0', []);
return parent::getCustom0();
}
/**
* {@inheritDoc}
*/
public function setCustom0($value)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setCustom0', [$value]);
return parent::setCustom0($value);
}
/**
* {@inheritDoc}
*/
public function getCustom1()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getCustom1', []);
return parent::getCustom1();
}
/**
* {@inheritDoc}
*/
public function setCustom1($value)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setCustom1', [$value]);
return parent::setCustom1($value);
}
/**
* {@inheritDoc}
*/
public function getCustom2()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getCustom2', []);
return parent::getCustom2();
}
/**
* {@inheritDoc}
*/
public function setCustom2($value)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setCustom2', [$value]);
return parent::setCustom2($value);
}
/**
* {@inheritDoc}
*/
public function getCustom3()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getCustom3', []);
return parent::getCustom3();
}
/**
* {@inheritDoc}
*/
public function setCustom3($value)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setCustom3', [$value]);
return parent::setCustom3($value);
}
/**
* {@inheritDoc}
*/
public function getAuthenticationTypes(): \Platform\SecurityBundle\Model\OAuth\AuthenticationTypesBitwise
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getAuthenticationTypes', []);
return parent::getAuthenticationTypes();
}
/**
* {@inheritDoc}
*/
public function setAuthenticationTypes(\Platform\SecurityBundle\Model\OAuth\AuthenticationTypesBitwise $value): \Cms\TenantBundle\Entity\Tenant
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setAuthenticationTypes', [$value]);
return parent::setAuthenticationTypes($value);
}
/**
* {@inheritDoc}
*/
public function getClasslinkCustomerId(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getClasslinkCustomerId', []);
return parent::getClasslinkCustomerId();
}
/**
* {@inheritDoc}
*/
public function setClasslinkCustomerId(?string $value): \Cms\TenantBundle\Entity\Tenant
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setClasslinkCustomerId', [$value]);
return parent::setClasslinkCustomerId($value);
}
/**
* {@inheritDoc}
*/
public function getCleverCustomerId(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getCleverCustomerId', []);
return parent::getCleverCustomerId();
}
/**
* {@inheritDoc}
*/
public function setCleverCustomerId(?string $value): \Cms\TenantBundle\Entity\Tenant
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setCleverCustomerId', [$value]);
return parent::setCleverCustomerId($value);
}
/**
* {@inheritDoc}
*/
public function getGg4lCustomerId(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getGg4lCustomerId', []);
return parent::getGg4lCustomerId();
}
/**
* {@inheritDoc}
*/
public function setGg4lCustomerId(?string $value): \Cms\TenantBundle\Entity\Tenant
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setGg4lCustomerId', [$value]);
return parent::setGg4lCustomerId($value);
}
/**
* {@inheritDoc}
*/
public function getMicrosoftCustomerId(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getMicrosoftCustomerId', []);
return parent::getMicrosoftCustomerId();
}
/**
* {@inheritDoc}
*/
public function setMicrosoftCustomerId(?string $value): \Cms\TenantBundle\Entity\Tenant
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setMicrosoftCustomerId', [$value]);
return parent::setMicrosoftCustomerId($value);
}
/**
* {@inheritDoc}
*/
public function getGoogleCustomerId(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getGoogleCustomerId', []);
return parent::getGoogleCustomerId();
}
/**
* {@inheritDoc}
*/
public function setGoogleCustomerId(?string $value): \Cms\TenantBundle\Entity\Tenant
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setGoogleCustomerId', [$value]);
return parent::setGoogleCustomerId($value);
}
/**
* {@inheritDoc}
*/
public function getUlidAsString(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getUlidAsString', []);
return parent::getUlidAsString();
}
/**
* {@inheritDoc}
*/
public function getUlid(): ?\Ulid\Ulid
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getUlid', []);
return parent::getUlid();
}
/**
* {@inheritDoc}
*/
public function setUlid($ulid, bool $overwrite = false): \Cms\TenantBundle\Entity\Tenant
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setUlid', [$ulid, $overwrite]);
return parent::setUlid($ulid, $overwrite);
}
/**
* {@inheritDoc}
*/
public function getUlidTime(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getUlidTime', []);
return parent::getUlidTime();
}
/**
* {@inheritDoc}
*/
public function getUlidRandomness(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getUlidRandomness', []);
return parent::getUlidRandomness();
}
/**
* {@inheritDoc}
*/
public function getUlidTimestamp(): ?int
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getUlidTimestamp', []);
return parent::getUlidTimestamp();
}
}