type; } /** * @param string|null $type */ function setType($type) { $this->type = $type; } /** * @return string|null */ function getStatus() { return $this->status; } /** * @param string|null $status */ function setStatus($status) { $this->status = $status; } /** * @return int */ function getPriority() { return $this->priority; } /** * @param int $priority */ function setPriority($priority) { $this->priority = $priority; } /** * @return DateTimeInterface|null */ function getScheduledAt() { return $this->scheduled_at; } /** * @param DateTimeInterface|null $scheduled_at */ function setScheduledAt($scheduled_at) { $this->scheduled_at = $scheduled_at; } /** * @return DateTimeInterface|null */ function getProcessedAt() { return $this->processed_at; } /** * @param DateTimeInterface|null $processed_at */ function setProcessedAt($processed_at) { $this->processed_at = $processed_at; } /** * @return array|null */ function getMeta() { return $this->meta; } /** * @param array|null $meta */ function setMeta($meta) { $this->meta = $meta; } }