<?php
namespace Proxies\__CG__\App\Entity\Vista;
/**
* DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR
*/
class LoyaltyMember extends \App\Entity\Vista\LoyaltyMember 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\Common\Persistence\Proxy::__isInitialized
*/
public $__isInitialized__ = false;
/**
* @var array properties to be lazy loaded, with keys being the property
* names and values being their default values
*
* @see \Doctrine\Common\Proxy\Proxy::__getLazyProperties
*/
public static $lazyPropertiesDefaults = [];
/**
* @param \Closure $initializer
* @param \Closure $cloner
*/
public function __construct($initializer = null, $cloner = null)
{
$this->__initializer__ = $initializer;
$this->__cloner__ = $cloner;
}
/**
*
* @return array
*/
public function __sleep()
{
if ($this->__isInitialized__) {
return ['__isInitialized__', 'id', 'userSessionId', 'memberId', 'firstName', 'lastName', 'fullName', 'cardNumber', 'mobilePhone', 'homePhone', 'appleUserId', 'appleEmailAddress', 'email', 'clubID', 'balanceList', 'userName', 'password', 'restrictions', 'middleName', 'address1', 'state', 'city', 'zipCode', 'sendNewsletter', 'educationLevel', 'householdIncome', 'personsInHousehold', 'dateOfBirth', 'status', 'suburb', 'gender', 'pickupComplex', 'preferredComplex', 'preferredComplexList', 'preferenceList', 'opera', 'familyClubAndChildrenActions', 'remembranceEventsService', 'clubName', 'contactByThirdParty', 'expiryDate', 'wishToReceiveSMS', 'workZipCode', 'cardList', 'preferredGenres', 'occupation', 'maritalStatus', 'mailingFrequency', 'pin', 'expiryPointsList', 'memberLevelId', 'memberLevelName', 'loyaltySessionExpiry', 'loyaltySessionToken', 'giftCard', 'giftCardBalance', 'isBannedFromMakingUnpaidBookingsUntil', 'membershipActivated', 'memberItemId', 'externalID', 'nationalID', 'pushNotificationSubscription', 'isAnonymous', 'validatedFiscaliazionLaw', 'memberLanguageIETFCode', 'modifiedAt', 'createdAt'];
}
return ['__isInitialized__', 'id', 'userSessionId', 'memberId', 'firstName', 'lastName', 'fullName', 'cardNumber', 'mobilePhone', 'homePhone', 'appleUserId', 'appleEmailAddress', 'email', 'clubID', 'balanceList', 'userName', 'password', 'restrictions', 'middleName', 'address1', 'state', 'city', 'zipCode', 'sendNewsletter', 'educationLevel', 'householdIncome', 'personsInHousehold', 'dateOfBirth', 'status', 'suburb', 'gender', 'pickupComplex', 'preferredComplex', 'preferredComplexList', 'preferenceList', 'opera', 'familyClubAndChildrenActions', 'remembranceEventsService', 'clubName', 'contactByThirdParty', 'expiryDate', 'wishToReceiveSMS', 'workZipCode', 'cardList', 'preferredGenres', 'occupation', 'maritalStatus', 'mailingFrequency', 'pin', 'expiryPointsList', 'memberLevelId', 'memberLevelName', 'loyaltySessionExpiry', 'loyaltySessionToken', 'giftCard', 'giftCardBalance', 'isBannedFromMakingUnpaidBookingsUntil', 'membershipActivated', 'memberItemId', 'externalID', 'nationalID', 'pushNotificationSubscription', 'isAnonymous', 'validatedFiscaliazionLaw', 'memberLanguageIETFCode', 'modifiedAt', 'createdAt'];
}
/**
*
*/
public function __wakeup()
{
if ( ! $this->__isInitialized__) {
$this->__initializer__ = function (LoyaltyMember $proxy) {
$proxy->__setInitializer(null);
$proxy->__setCloner(null);
$existingProperties = get_object_vars($proxy);
foreach ($proxy->__getLazyProperties() 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()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, '__load', []);
}
/**
* {@inheritDoc}
* @internal generated method: use only when explicitly handling proxy specific loading logic
*/
public function __isInitialized()
{
return $this->__isInitialized__;
}
/**
* {@inheritDoc}
* @internal generated method: use only when explicitly handling proxy specific loading logic
*/
public function __setInitialized($initialized)
{
$this->__isInitialized__ = $initialized;
}
/**
* {@inheritDoc}
* @internal generated method: use only when explicitly handling proxy specific loading logic
*/
public function __setInitializer(\Closure $initializer = null)
{
$this->__initializer__ = $initializer;
}
/**
* {@inheritDoc}
* @internal generated method: use only when explicitly handling proxy specific loading logic
*/
public function __getInitializer()
{
return $this->__initializer__;
}
/**
* {@inheritDoc}
* @internal generated method: use only when explicitly handling proxy specific loading logic
*/
public function __setCloner(\Closure $cloner = null)
{
$this->__cloner__ = $cloner;
}
/**
* {@inheritDoc}
* @internal generated method: use only when explicitly handling proxy specific cloning logic
*/
public function __getCloner()
{
return $this->__cloner__;
}
/**
* {@inheritDoc}
* @internal generated method: use only when explicitly handling proxy specific loading logic
* @static
*/
public function __getLazyProperties()
{
return self::$lazyPropertiesDefaults;
}
/**
* {@inheritDoc}
*/
public function getRoles()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getRoles', []);
return parent::getRoles();
}
/**
* {@inheritDoc}
*/
public function getSalt()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getSalt', []);
return parent::getSalt();
}
/**
* {@inheritDoc}
*/
public function eraseCredentials()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'eraseCredentials', []);
return parent::eraseCredentials();
}
/**
* {@inheritDoc}
*/
public function serialize()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'serialize', []);
return parent::serialize();
}
/**
* {@inheritDoc}
*/
public function unserialize($serialized)
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'unserialize', [$serialized]);
return parent::unserialize($serialized);
}
/**
* {@inheritDoc}
*/
public function getId(): ?string
{
if ($this->__isInitialized__ === false) {
return parent::getId();
}
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getId', []);
return parent::getId();
}
/**
* {@inheritDoc}
*/
public function setId(?string $id): \App\Entity\Vista\LoyaltyMember
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setId', [$id]);
return parent::setId($id);
}
/**
* {@inheritDoc}
*/
public function getUserSessionId(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getUserSessionId', []);
return parent::getUserSessionId();
}
/**
* {@inheritDoc}
*/
public function setUserSessionId(?string $userSessionId): \App\Entity\Vista\LoyaltyMember
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setUserSessionId', [$userSessionId]);
return parent::setUserSessionId($userSessionId);
}
/**
* {@inheritDoc}
*/
public function getMemberId(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getMemberId', []);
return parent::getMemberId();
}
/**
* {@inheritDoc}
*/
public function setMemberId(?string $memberId): \App\Entity\Vista\LoyaltyMember
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setMemberId', [$memberId]);
return parent::setMemberId($memberId);
}
/**
* {@inheritDoc}
*/
public function getFirstName(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getFirstName', []);
return parent::getFirstName();
}
/**
* {@inheritDoc}
*/
public function setFirstName(?string $firstName): \App\Entity\Vista\LoyaltyMember
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setFirstName', [$firstName]);
return parent::setFirstName($firstName);
}
/**
* {@inheritDoc}
*/
public function getLastName(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getLastName', []);
return parent::getLastName();
}
/**
* {@inheritDoc}
*/
public function setLastName(?string $lastName): \App\Entity\Vista\LoyaltyMember
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setLastName', [$lastName]);
return parent::setLastName($lastName);
}
/**
* {@inheritDoc}
*/
public function getFullName(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getFullName', []);
return parent::getFullName();
}
/**
* {@inheritDoc}
*/
public function setFullName(?string $fullName): \App\Entity\Vista\LoyaltyMember
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setFullName', [$fullName]);
return parent::setFullName($fullName);
}
/**
* {@inheritDoc}
*/
public function getCardNumber(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getCardNumber', []);
return parent::getCardNumber();
}
/**
* {@inheritDoc}
*/
public function setCardNumber(?string $cardNumber): \App\Entity\Vista\LoyaltyMember
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setCardNumber', [$cardNumber]);
return parent::setCardNumber($cardNumber);
}
/**
* {@inheritDoc}
*/
public function getMobilePhone(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getMobilePhone', []);
return parent::getMobilePhone();
}
/**
* {@inheritDoc}
*/
public function setMobilePhone(?string $mobilePhone): \App\Entity\Vista\LoyaltyMember
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setMobilePhone', [$mobilePhone]);
return parent::setMobilePhone($mobilePhone);
}
/**
* {@inheritDoc}
*/
public function getHomePhone(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getHomePhone', []);
return parent::getHomePhone();
}
/**
* {@inheritDoc}
*/
public function setHomePhone(?string $homePhone): \App\Entity\Vista\LoyaltyMember
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setHomePhone', [$homePhone]);
return parent::setHomePhone($homePhone);
}
/**
* {@inheritDoc}
*/
public function getAppleUserId(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getAppleUserId', []);
return parent::getAppleUserId();
}
/**
* {@inheritDoc}
*/
public function setAppleUserId(?string $appleUserId): \App\Entity\Vista\LoyaltyMember
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setAppleUserId', [$appleUserId]);
return parent::setAppleUserId($appleUserId);
}
/**
* {@inheritDoc}
*/
public function getAppleEmailAddress(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getAppleEmailAddress', []);
return parent::getAppleEmailAddress();
}
/**
* {@inheritDoc}
*/
public function setAppleEmailAddress(?string $appleEmailAddress): \App\Entity\Vista\LoyaltyMember
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setAppleEmailAddress', [$appleEmailAddress]);
return parent::setAppleEmailAddress($appleEmailAddress);
}
/**
* {@inheritDoc}
*/
public function getEmail(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getEmail', []);
return parent::getEmail();
}
/**
* {@inheritDoc}
*/
public function setEmail(?string $email): \App\Entity\Vista\LoyaltyMember
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setEmail', [$email]);
return parent::setEmail($email);
}
/**
* {@inheritDoc}
*/
public function getClubID(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getClubID', []);
return parent::getClubID();
}
/**
* {@inheritDoc}
*/
public function setClubID(?string $clubID): \App\Entity\Vista\LoyaltyMember
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setClubID', [$clubID]);
return parent::setClubID($clubID);
}
/**
* {@inheritDoc}
*/
public function getBalanceList(): ?array
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getBalanceList', []);
return parent::getBalanceList();
}
/**
* {@inheritDoc}
*/
public function setBalanceList(?array $balanceList): \App\Entity\Vista\LoyaltyMember
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setBalanceList', [$balanceList]);
return parent::setBalanceList($balanceList);
}
/**
* {@inheritDoc}
*/
public function getBalancePoints()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getBalancePoints', []);
return parent::getBalancePoints();
}
/**
* {@inheritDoc}
*/
public function getUserName(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getUserName', []);
return parent::getUserName();
}
/**
* {@inheritDoc}
*/
public function setUserName(?string $userName): \App\Entity\Vista\LoyaltyMember
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setUserName', [$userName]);
return parent::setUserName($userName);
}
/**
* {@inheritDoc}
*/
public function getPassword(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getPassword', []);
return parent::getPassword();
}
/**
* {@inheritDoc}
*/
public function setPassword(?string $password): \App\Entity\Vista\LoyaltyMember
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setPassword', [$password]);
return parent::setPassword($password);
}
/**
* {@inheritDoc}
*/
public function getMiddleName(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getMiddleName', []);
return parent::getMiddleName();
}
/**
* {@inheritDoc}
*/
public function setMiddleName(?string $middleName): \App\Entity\Vista\LoyaltyMember
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setMiddleName', [$middleName]);
return parent::setMiddleName($middleName);
}
/**
* {@inheritDoc}
*/
public function getAddress1(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getAddress1', []);
return parent::getAddress1();
}
/**
* {@inheritDoc}
*/
public function setAddress1(?string $address1): \App\Entity\Vista\LoyaltyMember
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setAddress1', [$address1]);
return parent::setAddress1($address1);
}
/**
* {@inheritDoc}
*/
public function getState(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getState', []);
return parent::getState();
}
/**
* {@inheritDoc}
*/
public function setState(?string $state): \App\Entity\Vista\LoyaltyMember
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setState', [$state]);
return parent::setState($state);
}
/**
* {@inheritDoc}
*/
public function getCity(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getCity', []);
return parent::getCity();
}
/**
* {@inheritDoc}
*/
public function setCity(?string $city): \App\Entity\Vista\LoyaltyMember
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setCity', [$city]);
return parent::setCity($city);
}
/**
* {@inheritDoc}
*/
public function getZipCode(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getZipCode', []);
return parent::getZipCode();
}
/**
* {@inheritDoc}
*/
public function setZipCode(?string $zipCode): \App\Entity\Vista\LoyaltyMember
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setZipCode', [$zipCode]);
return parent::setZipCode($zipCode);
}
/**
* {@inheritDoc}
*/
public function getSendNewsletter(): ?bool
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getSendNewsletter', []);
return parent::getSendNewsletter();
}
/**
* {@inheritDoc}
*/
public function setSendNewsletter(?bool $sendNewsletter): \App\Entity\Vista\LoyaltyMember
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setSendNewsletter', [$sendNewsletter]);
return parent::setSendNewsletter($sendNewsletter);
}
/**
* {@inheritDoc}
*/
public function getEducationLevel(): ?int
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getEducationLevel', []);
return parent::getEducationLevel();
}
/**
* {@inheritDoc}
*/
public function setEducationLevel(?int $educationLevel): \App\Entity\Vista\LoyaltyMember
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setEducationLevel', [$educationLevel]);
return parent::setEducationLevel($educationLevel);
}
/**
* {@inheritDoc}
*/
public function getHouseholdIncome(): ?int
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getHouseholdIncome', []);
return parent::getHouseholdIncome();
}
/**
* {@inheritDoc}
*/
public function setHouseholdIncome(?int $householdIncome): \App\Entity\Vista\LoyaltyMember
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setHouseholdIncome', [$householdIncome]);
return parent::setHouseholdIncome($householdIncome);
}
/**
* {@inheritDoc}
*/
public function getPersonsInHousehold(): ?int
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getPersonsInHousehold', []);
return parent::getPersonsInHousehold();
}
/**
* {@inheritDoc}
*/
public function setPersonsInHousehold(?int $personsInHousehold): \App\Entity\Vista\LoyaltyMember
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setPersonsInHousehold', [$personsInHousehold]);
return parent::setPersonsInHousehold($personsInHousehold);
}
/**
* {@inheritDoc}
*/
public function getDateOfBirth(): ?\DateTimeImmutable
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getDateOfBirth', []);
return parent::getDateOfBirth();
}
/**
* {@inheritDoc}
*/
public function setDateOfBirth(?\DateTimeImmutable $dateOfBirth): \App\Entity\Vista\LoyaltyMember
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setDateOfBirth', [$dateOfBirth]);
return parent::setDateOfBirth($dateOfBirth);
}
/**
* {@inheritDoc}
*/
public function getStatus(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getStatus', []);
return parent::getStatus();
}
/**
* {@inheritDoc}
*/
public function setStatus(?string $status): \App\Entity\Vista\LoyaltyMember
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setStatus', [$status]);
return parent::setStatus($status);
}
/**
* {@inheritDoc}
*/
public function getSuburb(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getSuburb', []);
return parent::getSuburb();
}
/**
* {@inheritDoc}
*/
public function setSuburb(?string $suburb): \App\Entity\Vista\LoyaltyMember
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setSuburb', [$suburb]);
return parent::setSuburb($suburb);
}
/**
* {@inheritDoc}
*/
public function getGender(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getGender', []);
return parent::getGender();
}
/**
* {@inheritDoc}
*/
public function setGender(?string $gender): \App\Entity\Vista\LoyaltyMember
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setGender', [$gender]);
return parent::setGender($gender);
}
/**
* {@inheritDoc}
*/
public function getPickupComplex(): ?int
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getPickupComplex', []);
return parent::getPickupComplex();
}
/**
* {@inheritDoc}
*/
public function setPickupComplex(?int $pickupComplex): \App\Entity\Vista\LoyaltyMember
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setPickupComplex', [$pickupComplex]);
return parent::setPickupComplex($pickupComplex);
}
/**
* {@inheritDoc}
*/
public function getPreferredComplex(): ?int
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getPreferredComplex', []);
return parent::getPreferredComplex();
}
/**
* {@inheritDoc}
*/
public function setPreferredComplex(?int $preferredComplex): \App\Entity\Vista\LoyaltyMember
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setPreferredComplex', [$preferredComplex]);
return parent::setPreferredComplex($preferredComplex);
}
/**
* {@inheritDoc}
*/
public function getPreferredComplexList(): ?array
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getPreferredComplexList', []);
return parent::getPreferredComplexList();
}
/**
* {@inheritDoc}
*/
public function setPreferredComplexList(?array $preferredComplexList): \App\Entity\Vista\LoyaltyMember
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setPreferredComplexList', [$preferredComplexList]);
return parent::setPreferredComplexList($preferredComplexList);
}
/**
* {@inheritDoc}
*/
public function getPreferenceList(): ?array
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getPreferenceList', []);
return parent::getPreferenceList();
}
/**
* {@inheritDoc}
*/
public function setPreferenceList(?array $preferenceList): \App\Entity\Vista\LoyaltyMember
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setPreferenceList', [$preferenceList]);
return parent::setPreferenceList($preferenceList);
}
/**
* {@inheritDoc}
*/
public function getOpera(): ?bool
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getOpera', []);
return parent::getOpera();
}
/**
* {@inheritDoc}
*/
public function setOpera(?bool $opera): \App\Entity\Vista\LoyaltyMember
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setOpera', [$opera]);
return parent::setOpera($opera);
}
/**
* {@inheritDoc}
*/
public function getFamilyClubAndChildrenActions(): ?bool
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getFamilyClubAndChildrenActions', []);
return parent::getFamilyClubAndChildrenActions();
}
/**
* {@inheritDoc}
*/
public function setFamilyClubAndChildrenActions(?bool $familyClubAndChildrenActions): \App\Entity\Vista\LoyaltyMember
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setFamilyClubAndChildrenActions', [$familyClubAndChildrenActions]);
return parent::setFamilyClubAndChildrenActions($familyClubAndChildrenActions);
}
/**
* {@inheritDoc}
*/
public function getRemembranceEventsService(): ?bool
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getRemembranceEventsService', []);
return parent::getRemembranceEventsService();
}
/**
* {@inheritDoc}
*/
public function setRemembranceEventsService(?bool $remembranceEventsService): \App\Entity\Vista\LoyaltyMember
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setRemembranceEventsService', [$remembranceEventsService]);
return parent::setRemembranceEventsService($remembranceEventsService);
}
/**
* {@inheritDoc}
*/
public function getClubName(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getClubName', []);
return parent::getClubName();
}
/**
* {@inheritDoc}
*/
public function setClubName(?string $clubName): \App\Entity\Vista\LoyaltyMember
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setClubName', [$clubName]);
return parent::setClubName($clubName);
}
/**
* {@inheritDoc}
*/
public function getContactByThirdParty(): ?bool
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getContactByThirdParty', []);
return parent::getContactByThirdParty();
}
/**
* {@inheritDoc}
*/
public function setContactByThirdParty(?bool $contactByThirdParty): \App\Entity\Vista\LoyaltyMember
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setContactByThirdParty', [$contactByThirdParty]);
return parent::setContactByThirdParty($contactByThirdParty);
}
/**
* {@inheritDoc}
*/
public function getExpiryDate(): ?\DateTime
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getExpiryDate', []);
return parent::getExpiryDate();
}
/**
* {@inheritDoc}
*/
public function setExpiryDate(?\DateTime $expiryDate): \App\Entity\Vista\LoyaltyMember
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setExpiryDate', [$expiryDate]);
return parent::setExpiryDate($expiryDate);
}
/**
* {@inheritDoc}
*/
public function getWishToReceiveSMS(): ?bool
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getWishToReceiveSMS', []);
return parent::getWishToReceiveSMS();
}
/**
* {@inheritDoc}
*/
public function setWishToReceiveSMS(?bool $wishToReceiveSMS): \App\Entity\Vista\LoyaltyMember
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setWishToReceiveSMS', [$wishToReceiveSMS]);
return parent::setWishToReceiveSMS($wishToReceiveSMS);
}
/**
* {@inheritDoc}
*/
public function getWorkZipCode(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getWorkZipCode', []);
return parent::getWorkZipCode();
}
/**
* {@inheritDoc}
*/
public function setWorkZipCode(?string $workZipCode): \App\Entity\Vista\LoyaltyMember
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setWorkZipCode', [$workZipCode]);
return parent::setWorkZipCode($workZipCode);
}
/**
* {@inheritDoc}
*/
public function getCardList(): ?array
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getCardList', []);
return parent::getCardList();
}
/**
* {@inheritDoc}
*/
public function setCardList(?array $cardList): \App\Entity\Vista\LoyaltyMember
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setCardList', [$cardList]);
return parent::setCardList($cardList);
}
/**
* {@inheritDoc}
*/
public function getPreferredGenres(): ?array
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getPreferredGenres', []);
return parent::getPreferredGenres();
}
/**
* {@inheritDoc}
*/
public function setPreferredGenres(?array $preferredGenres): \App\Entity\Vista\LoyaltyMember
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setPreferredGenres', [$preferredGenres]);
return parent::setPreferredGenres($preferredGenres);
}
/**
* {@inheritDoc}
*/
public function getOccupation(): ?int
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getOccupation', []);
return parent::getOccupation();
}
/**
* {@inheritDoc}
*/
public function setOccupation(?int $occupation): \App\Entity\Vista\LoyaltyMember
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setOccupation', [$occupation]);
return parent::setOccupation($occupation);
}
/**
* {@inheritDoc}
*/
public function getMaritalStatus(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getMaritalStatus', []);
return parent::getMaritalStatus();
}
/**
* {@inheritDoc}
*/
public function setMaritalStatus(?string $maritalStatus): \App\Entity\Vista\LoyaltyMember
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setMaritalStatus', [$maritalStatus]);
return parent::setMaritalStatus($maritalStatus);
}
/**
* {@inheritDoc}
*/
public function getMailingFrequency(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getMailingFrequency', []);
return parent::getMailingFrequency();
}
/**
* {@inheritDoc}
*/
public function setMailingFrequency(?string $mailingFrequency): \App\Entity\Vista\LoyaltyMember
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setMailingFrequency', [$mailingFrequency]);
return parent::setMailingFrequency($mailingFrequency);
}
/**
* {@inheritDoc}
*/
public function getPin(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getPin', []);
return parent::getPin();
}
/**
* {@inheritDoc}
*/
public function setPin(?string $pin): \App\Entity\Vista\LoyaltyMember
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setPin', [$pin]);
return parent::setPin($pin);
}
/**
* {@inheritDoc}
*/
public function getExpiryPointsList(): ?array
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getExpiryPointsList', []);
return parent::getExpiryPointsList();
}
/**
* {@inheritDoc}
*/
public function setExpiryPointsList(?array $expiryPointsList): \App\Entity\Vista\LoyaltyMember
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setExpiryPointsList', [$expiryPointsList]);
return parent::setExpiryPointsList($expiryPointsList);
}
/**
* {@inheritDoc}
*/
public function getMemberLevelId(): ?int
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getMemberLevelId', []);
return parent::getMemberLevelId();
}
/**
* {@inheritDoc}
*/
public function setMemberLevelId(?int $memberLevelId): \App\Entity\Vista\LoyaltyMember
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setMemberLevelId', [$memberLevelId]);
return parent::setMemberLevelId($memberLevelId);
}
/**
* {@inheritDoc}
*/
public function getMemberLevelName(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getMemberLevelName', []);
return parent::getMemberLevelName();
}
/**
* {@inheritDoc}
*/
public function setMemberLevelName(?string $memberLevelName): \App\Entity\Vista\LoyaltyMember
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setMemberLevelName', [$memberLevelName]);
return parent::setMemberLevelName($memberLevelName);
}
/**
* {@inheritDoc}
*/
public function getLoyaltySessionExpiry(): ?\DateTime
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getLoyaltySessionExpiry', []);
return parent::getLoyaltySessionExpiry();
}
/**
* {@inheritDoc}
*/
public function setLoyaltySessionExpiry(?\DateTime $loyaltySessionExpiry): \App\Entity\Vista\LoyaltyMember
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setLoyaltySessionExpiry', [$loyaltySessionExpiry]);
return parent::setLoyaltySessionExpiry($loyaltySessionExpiry);
}
/**
* {@inheritDoc}
*/
public function getLoyaltySessionToken(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getLoyaltySessionToken', []);
return parent::getLoyaltySessionToken();
}
/**
* {@inheritDoc}
*/
public function setLoyaltySessionToken(string $loyaltySessionToken): \App\Entity\Vista\LoyaltyMember
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setLoyaltySessionToken', [$loyaltySessionToken]);
return parent::setLoyaltySessionToken($loyaltySessionToken);
}
/**
* {@inheritDoc}
*/
public function getGiftCard(): ?bool
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getGiftCard', []);
return parent::getGiftCard();
}
/**
* {@inheritDoc}
*/
public function setGiftCard(?bool $giftCard): \App\Entity\Vista\LoyaltyMember
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setGiftCard', [$giftCard]);
return parent::setGiftCard($giftCard);
}
/**
* {@inheritDoc}
*/
public function getGiftCardBalance(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getGiftCardBalance', []);
return parent::getGiftCardBalance();
}
/**
* {@inheritDoc}
*/
public function setGiftCardBalance(?string $giftCardBalance): \App\Entity\Vista\LoyaltyMember
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setGiftCardBalance', [$giftCardBalance]);
return parent::setGiftCardBalance($giftCardBalance);
}
/**
* {@inheritDoc}
*/
public function getisBannedFromMakingUnpaidBookingsUntil(): ?\DateTime
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getisBannedFromMakingUnpaidBookingsUntil', []);
return parent::getisBannedFromMakingUnpaidBookingsUntil();
}
/**
* {@inheritDoc}
*/
public function setIsBannedFromMakingUnpaidBookingsUntil(?\DateTime $isBannedFromMakingUnpaidBookingsUntil): \App\Entity\Vista\LoyaltyMember
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setIsBannedFromMakingUnpaidBookingsUntil', [$isBannedFromMakingUnpaidBookingsUntil]);
return parent::setIsBannedFromMakingUnpaidBookingsUntil($isBannedFromMakingUnpaidBookingsUntil);
}
/**
* {@inheritDoc}
*/
public function getMembershipActivated(): ?bool
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getMembershipActivated', []);
return parent::getMembershipActivated();
}
/**
* {@inheritDoc}
*/
public function setMembershipActivated(?bool $membershipActivated): \App\Entity\Vista\LoyaltyMember
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setMembershipActivated', [$membershipActivated]);
return parent::setMembershipActivated($membershipActivated);
}
/**
* {@inheritDoc}
*/
public function getMemberItemId(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getMemberItemId', []);
return parent::getMemberItemId();
}
/**
* {@inheritDoc}
*/
public function setMemberItemId(?string $memberItemId): \App\Entity\Vista\LoyaltyMember
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setMemberItemId', [$memberItemId]);
return parent::setMemberItemId($memberItemId);
}
/**
* {@inheritDoc}
*/
public function getExternalID(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getExternalID', []);
return parent::getExternalID();
}
/**
* {@inheritDoc}
*/
public function setExternalID(?string $externalID): \App\Entity\Vista\LoyaltyMember
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setExternalID', [$externalID]);
return parent::setExternalID($externalID);
}
/**
* {@inheritDoc}
*/
public function getNationalID(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getNationalID', []);
return parent::getNationalID();
}
/**
* {@inheritDoc}
*/
public function setNationalID(?string $nationalID): \App\Entity\Vista\LoyaltyMember
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setNationalID', [$nationalID]);
return parent::setNationalID($nationalID);
}
/**
* {@inheritDoc}
*/
public function getPushNotificationSubscription(): ?\App\Entity\Local\PushNotificationSubscription
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getPushNotificationSubscription', []);
return parent::getPushNotificationSubscription();
}
/**
* {@inheritDoc}
*/
public function setPushNotificationSubscription(?\App\Entity\Local\PushNotificationSubscription $pushNotificationSubscription): \App\Entity\Vista\LoyaltyMember
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setPushNotificationSubscription', [$pushNotificationSubscription]);
return parent::setPushNotificationSubscription($pushNotificationSubscription);
}
/**
* {@inheritDoc}
*/
public function getisAnonymous(): ?bool
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getisAnonymous', []);
return parent::getisAnonymous();
}
/**
* {@inheritDoc}
*/
public function setIsAnonymous(?bool $isAnonymous): \App\Entity\Vista\LoyaltyMember
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setIsAnonymous', [$isAnonymous]);
return parent::setIsAnonymous($isAnonymous);
}
/**
* {@inheritDoc}
*/
public function getValidatedFiscaliazionLaw(): ?bool
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getValidatedFiscaliazionLaw', []);
return parent::getValidatedFiscaliazionLaw();
}
/**
* {@inheritDoc}
*/
public function setValidatedFiscaliazionLaw(?bool $validatedFiscaliazionLaw): \App\Entity\Vista\LoyaltyMember
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setValidatedFiscaliazionLaw', [$validatedFiscaliazionLaw]);
return parent::setValidatedFiscaliazionLaw($validatedFiscaliazionLaw);
}
/**
* {@inheritDoc}
*/
public function getMemberLanguageIETFCode(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getMemberLanguageIETFCode', []);
return parent::getMemberLanguageIETFCode();
}
/**
* {@inheritDoc}
*/
public function setMemberLanguageIETFCode(?string $memberLanguageIETFCode): \App\Entity\Vista\LoyaltyMember
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setMemberLanguageIETFCode', [$memberLanguageIETFCode]);
return parent::setMemberLanguageIETFCode($memberLanguageIETFCode);
}
/**
* {@inheritDoc}
*/
public function getFirstAndLastNames(): ?string
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getFirstAndLastNames', []);
return parent::getFirstAndLastNames();
}
/**
* {@inheritDoc}
*/
public function getModifiedAt(): ?\DateTimeImmutable
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getModifiedAt', []);
return parent::getModifiedAt();
}
/**
* {@inheritDoc}
*/
public function setModifiedAt(\DateTimeImmutable $modifiedAt): \App\Entity\Vista\LoyaltyMember
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setModifiedAt', [$modifiedAt]);
return parent::setModifiedAt($modifiedAt);
}
/**
* {@inheritDoc}
*/
public function getCreatedAt(): ?\DateTimeImmutable
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getCreatedAt', []);
return parent::getCreatedAt();
}
/**
* {@inheritDoc}
*/
public function setCreatedAt(\DateTimeImmutable $createdAt): \App\Entity\Vista\LoyaltyMember
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setCreatedAt', [$createdAt]);
return parent::setCreatedAt($createdAt);
}
/**
* {@inheritDoc}
*/
public function getRestrictions(): ?\App\Entity\Local\Restrictions
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'getRestrictions', []);
return parent::getRestrictions();
}
/**
* {@inheritDoc}
*/
public function setRestrictions(\App\Entity\Local\Restrictions $restrictions): \App\Entity\Vista\LoyaltyMember
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'setRestrictions', [$restrictions]);
return parent::setRestrictions($restrictions);
}
/**
* {@inheritDoc}
*/
public function onPrePersist()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'onPrePersist', []);
return parent::onPrePersist();
}
/**
* {@inheritDoc}
*/
public function onPreUpdate()
{
$this->__initializer__ && $this->__initializer__->__invoke($this, 'onPreUpdate', []);
return parent::onPreUpdate();
}
}