mirror of
https://github.com/JanGross/quicknotes.git
synced 2025-12-01 07:37:18 +01:00
53 lines
1.2 KiB
PHP
53 lines
1.2 KiB
PHP
<?php
|
|
namespace OCA\QuickNotes\Db;
|
|
|
|
use JsonSerializable;
|
|
|
|
use OCP\AppFramework\Db\Entity;
|
|
|
|
/**
|
|
* @method string getUserId()
|
|
* @method void setUserId(string $userId)
|
|
* @method int getNoteId()
|
|
* @method void setNoteId(int $noteId)
|
|
* @method int getFileId()
|
|
* @method void setFileId(int $fileId)
|
|
* @method int getCreatedAt()
|
|
* @method void setCreatedAt(int $createdAt)
|
|
*/
|
|
|
|
class Attach extends Entity implements JsonSerializable {
|
|
protected $userId;
|
|
protected $noteId;
|
|
protected $fileId;
|
|
protected $createdAt;
|
|
|
|
protected $previewUrl;
|
|
protected $redirectUrl;
|
|
protected $deepLinkUrl;
|
|
|
|
public function setPreviewUrl(string $previewUrl): void {
|
|
$this->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
|
|
];
|
|
}
|
|
}
|