title; } /** * @param string $title * @return $this */ public function setTitle(string $title): QueueMessageVo { $this->title = $title; return $this; } /** * @return mixed */ public function getContentType(): string { return $this->contentType; } /** * @param string $contentType * @return $this */ public function setContentType(string $contentType): QueueMessageVo { $this->contentType = $contentType; return $this; } /** * @return mixed */ public function getContent(): string { return $this->content; } /** * @param string $content * @return $this */ public function setContent(string $content): QueueMessageVo { $this->content = $content; return $this; } /** * @return string */ public function getSendBy(): int { return $this->sendBy; } /** * @param string $sendBy * @return QueueMessageVo */ public function setSendBy(int $sendBy): QueueMessageVo { $this->sendBy = $sendBy; return $this; } /** * @return string */ public function getRemark(): string { return $this->remark; } /** * @param string $remark * @return QueueMessageVo */ public function setRemark(string $remark): QueueMessageVo { $this->remark = $remark; return $this; } /** * @return bool */ public function getIsConfirm(): bool { return $this->isConfirm; } /** * @param bool $isConfirm * @return QueueMessageVo */ public function setIsConfirm(bool $isConfirm): QueueMessageVo { $this->isConfirm = $isConfirm; return $this; } /** * @return int */ public function getTimeout(): int { return $this->timeout; } /** * @param int $timeout * @return QueueMessageVo */ public function setTimeout(int $timeout): QueueMessageVo { $this->timeout = $timeout; return $this; } /** * @return int */ public function getDelayTime(): int { return $this->delayTime; } /** * @param int $delayTime * @return QueueMessageVo */ public function setDelayTime(int $delayTime): QueueMessageVo { $this->delayTime = $delayTime; return $this; } }