id; } /** * @return string */ public function getFormat(): string { return $this->format; } /** * @param string $format */ public function setFormat(string $format): void { $this->format = $format; } /** * @return int|null */ public function getRequesterId(): ?int { return $this->requesterId; } /** * @param int|null $requesterId */ public function setRequesterId(?int $requesterId): void { $this->requesterId = $requesterId; } /** * @return bool */ public function isAsync(): bool { return $this->async; } /** * @param bool $async */ public function setAsync(bool $async): void { $this->async = $async; } /** * @return int|null */ public function getFileId(): ?int { return $this->fileId; } /** * @param int|null $fileId */ public function setFileId(?int $fileId): void { $this->fileId = $fileId; } }