![]() 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/mageworx/module-open-ai/Api/Data/ |
<?php declare(strict_types=1); namespace MageWorx\OpenAI\Api\Data; /** * Interface for MW Queue Process entity. */ interface QueueProcessInterface { /** * Constants for keys of data array. */ const ENTITY_ID = 'entity_id'; const NAME = 'name'; const SIZE = 'size'; const PROCESSED = 'processed'; const CREATED_AT = 'created_at'; const UPDATED_AT = 'updated_at'; const ADDITIONAL_DATA = 'additional_data'; /** * Get Entity ID. * * @return int|null */ public function getEntityId(); /** * Set Entity ID. * * @param int $entityId * @return QueueProcessInterface */ public function setEntityId($entityId): self; /** * Get process name. * * @return string */ public function getName(): string; /** * Set process name. * * @param string $name * @return QueueProcessInterface */ public function setName(string $name): self; /** * Get size. * * @return int */ public function getSize(): int; /** * Set size. * * @param int $size * @return QueueProcessInterface */ public function setSize(int $size): self; /** * Get processed. * * @return int */ public function getProcessed(): int; /** * Set processed. * * @param int $processed * @return QueueProcessInterface */ public function setProcessed(int $processed): self; /** * Get created at timestamp. * * @return string|null */ public function getCreatedAt(): ?string; /** * Set created at timestamp. * * @param string $createdAt * @return QueueProcessInterface */ public function setCreatedAt(string $createdAt): self; /** * Get updated at timestamp. * * @return string|null */ public function getUpdatedAt(): ?string; /** * Set updated at timestamp. * * @param string $updatedAt * @return QueueProcessInterface */ public function setUpdatedAt(string $updatedAt): self; /** * Get additional data. * * @return string|null */ public function getAdditionalData(): ?string; /** * Set additional data. * * @param string|null $additionalData * @return QueueProcessInterface */ public function setAdditionalData(?string $additionalData): self; }