FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
ameliabooking
/
src
/
Domain
/
Entity
/
Booking
/
Appointment
Edit File: CustomerBooking.php
<?php /** * @copyright © TMS-Plugins. All rights reserved. * @licence See LICENCE.md for license details. */ namespace AmeliaBooking\Domain\Entity\Booking\Appointment; use AmeliaBooking\Domain\Collection\Collection; use AmeliaBooking\Domain\Entity\Bookable\Service\PackageCustomerService; use AmeliaBooking\Domain\Entity\Booking\AbstractCustomerBooking; use AmeliaBooking\Domain\ValueObjects\BooleanValueObject; use AmeliaBooking\Domain\ValueObjects\DateTime\DateTimeValue; use AmeliaBooking\Domain\ValueObjects\Json; use AmeliaBooking\Domain\ValueObjects\PositiveDuration; use AmeliaBooking\Domain\ValueObjects\Number\Integer\Id; use AmeliaBooking\Domain\ValueObjects\Number\Integer\IntegerValue; use AmeliaBooking\Domain\ValueObjects\String\Token; /** * Class CustomerBooking * * @package AmeliaBooking\Domain\Entity\Booking\Appointment */ class CustomerBooking extends AbstractCustomerBooking { /** @var Id */ private $appointmentId; /** @var Collection */ protected $extras; /** @var IntegerValue */ private $persons; /** @var Collection */ private $payments; /** @var Collection */ private $ticketsBooking; /** @var Token */ private $token; /** @var IntegerValue */ private $utcOffset; /** @var BooleanValueObject */ protected $aggregatedPrice; /** @var BooleanValueObject */ protected $isChangedStatus; /** @var PackageCustomerService */ protected $packageCustomerService; /** @var BooleanValueObject */ protected $deposit; /** @var BooleanValueObject */ protected $isLastBooking; /** @var PositiveDuration */ private $duration; /** @var DateTimeValue */ private $created; /** @var BooleanValueObject */ private $actionsCompleted; /** @var BooleanValueObject */ protected $isNew; /** @var BooleanValueObject */ private $isUpdated; /** @var Json */ protected $customFields; /** @var Json */ protected $info; /** @var array */ protected $icsFiles; /** * @return Id */ public function getAppointmentId() { return $this->appointmentId; } /** * @param Id $appointmentId */ public function setAppointmentId(Id $appointmentId) { $this->appointmentId = $appointmentId; } /** * @return Collection */ public function getExtras() { return $this->extras; } /** * @param Collection $extras */ public function setExtras(Collection $extras) { $this->extras = $extras; } /** * @return IntegerValue */ public function getPersons() { return $this->persons; } /** * @param IntegerValue $persons */ public function setPersons(IntegerValue $persons) { $this->persons = $persons; } /** * @return Collection */ public function getPayments() { return $this->payments; } /** * @param Collection $payments */ public function setPayments(Collection $payments) { $this->payments = $payments; } /** * @return Token */ public function getToken() { return $this->token; } /** * @param Token $token */ public function setToken(Token $token) { $this->token = $token; } /** * @return IntegerValue */ public function getUtcOffset() { return $this->utcOffset; } /** * @param IntegerValue $utcOffset */ public function setUtcOffset(IntegerValue $utcOffset) { $this->utcOffset = $utcOffset; } /** * @return BooleanValueObject */ public function getAggregatedPrice() { return $this->aggregatedPrice; } /** * @param BooleanValueObject $aggregatedPrice */ public function setAggregatedPrice(BooleanValueObject $aggregatedPrice) { $this->aggregatedPrice = $aggregatedPrice; } /** * @return BooleanValueObject */ public function isChangedStatus() { return $this->isChangedStatus; } /** * @param BooleanValueObject $isChangedStatus */ public function setChangedStatus(BooleanValueObject $isChangedStatus) { $this->isChangedStatus = $isChangedStatus; } /** * @return PackageCustomerService */ public function getPackageCustomerService() { return $this->packageCustomerService; } /** * @param PackageCustomerService $packageCustomerService */ public function setPackageCustomerService(PackageCustomerService $packageCustomerService) { $this->packageCustomerService = $packageCustomerService; } /** * @return BooleanValueObject */ public function getDeposit() { return $this->deposit; } /** * @param BooleanValueObject $deposit */ public function setDeposit(BooleanValueObject $deposit) { $this->deposit = $deposit; } /** * @return BooleanValueObject */ public function isLastBooking() { return $this->isLastBooking; } /** * @param BooleanValueObject $isLastBooking */ public function setLastBooking($isLastBooking) { $this->isLastBooking = $isLastBooking; } /** * @return Collection */ public function getTicketsBooking() { return $this->ticketsBooking; } /** * @param Collection $ticketsBooking */ public function setTicketsBooking(Collection $ticketsBooking) { $this->ticketsBooking = $ticketsBooking; } /** * @return PositiveDuration */ public function getDuration() { return $this->duration; } /** * @param PositiveDuration $duration */ public function setDuration(PositiveDuration $duration) { $this->duration = $duration; } /** * @return DateTimeValue */ public function getCreated() { return $this->created; } /** * @param DateTimeValue $created */ public function setCreated($created) { $this->created = $created; } /** * @return BooleanValueObject */ public function getActionsCompleted() { return $this->actionsCompleted; } /** * @param BooleanValueObject $actionsCompleted */ public function setActionsCompleted($actionsCompleted) { $this->actionsCompleted = $actionsCompleted; } /** * @return BooleanValueObject */ public function isNew() { return $this->isNew; } /** * @param BooleanValueObject $isNew */ public function setNew(BooleanValueObject $isNew) { $this->isNew = $isNew; } /** * @return BooleanValueObject|null */ public function isUpdated() { return $this->isUpdated; } /** * @param BooleanValueObject $isUpdated */ public function setUpdated(BooleanValueObject $isUpdated) { $this->isUpdated = $isUpdated; } /** * @return Json */ public function getCustomFields() { return $this->customFields; } /** * @param Json $customFields */ public function setCustomFields($customFields) { $this->customFields = $customFields; } /** * @return Json */ public function getInfo() { return $this->info; } /** * @param Json $info */ public function setInfo(Json $info) { $this->info = $info; } /** * @return array */ public function getIcsFiles() { return $this->icsFiles; } /** * @param array $icsFiles */ public function setIcsFiles($icsFiles) { $this->icsFiles = $icsFiles; } /** * @return array */ public function toArray() { return array_merge( parent::toArray(), [ 'appointmentId' => null !== $this->getAppointmentId() ? $this->getAppointmentId()->getValue() : null, 'extras' => null !== $this->getExtras() ? $this->getExtras()->toArray() : null, 'persons' => null !== $this->getPersons() ? $this->getPersons()->getValue() : null, 'token' => $this->getToken() ? $this->getToken()->getValue() : null, 'payments' => null !== $this->getPayments() ? $this->getPayments()->toArray() : null, 'utcOffset' => null !== $this->getUtcOffset() ? $this->getUtcOffset()->getValue() : null, 'aggregatedPrice' => $this->getAggregatedPrice() ? $this->getAggregatedPrice()->getValue() : null, 'isChangedStatus' => $this->isChangedStatus() ? $this->isChangedStatus()->getValue() : null, 'isLastBooking' => $this->isLastBooking() ? $this->isLastBooking()->getValue() : null, 'packageCustomerService' => $this->getPackageCustomerService() ? $this->getPackageCustomerService()->toArray() : null, 'ticketsData' => null !== $this->getTicketsBooking() ? $this->getTicketsBooking()->toArray() : null, 'duration' => $this->getDuration() ? $this->getDuration()->getValue() : null, 'created' => $this->getCreated() ? $this->getCreated()->getValue()->format('Y-m-d H:i:s') : null, 'actionsCompleted' => $this->getActionsCompleted() ? $this->getActionsCompleted()->getValue() : null, 'isNew' => $this->isNew() ? $this->isNew()->getValue() : null, 'isUpdated' => $this->isUpdated() ? $this->isUpdated()->getValue() : null, 'customFields' => null !== $this->getCustomFields() ? $this->getCustomFields()->getValue() : null, 'info' => null !== $this->getInfo() ? $this->getInfo()->getValue() : null, 'icsFiles' => null !== $this->getIcsFiles() ? $this->getIcsFiles() : null, ] ); } }
Save
Back