previewUrl = $previewUrl; } public function setRedirectUrl(string $redirectUrl): void { $this->redirectUrl = $redirectUrl; } public function setDeepLinkUrl(string $deepLinkUrl): void { $this->deepLinkUrl = $deepLinkUrl; } public function jsonSerialize(): array { return [ 'id' => $this->id, 'note_id' => $this->noteId, 'file_id' => $this->fileId, 'created_at' => $this->createdAt, 'preview_url' => $this->previewUrl, 'redirect_url' => $this->redirectUrl, 'deep_link_url' => $this->deepLinkUrl ]; } }