mirror of
https://github.com/verdigado/organization_folders.git
synced 2024-11-22 20:50:26 +01:00
49 lines
No EOL
1.1 KiB
PHP
49 lines
No EOL
1.1 KiB
PHP
<?php
|
|
|
|
namespace OCA\OrganizationFolders\Model;
|
|
|
|
use \JsonSerializable;
|
|
use OCA\OrganizationFolders\Interface\TableSerializable;
|
|
|
|
class OrganizationFolder implements JsonSerializable, TableSerializable {
|
|
public function __construct(
|
|
private int $id,
|
|
private string $name,
|
|
private int $quota,
|
|
private ?string $organizationProvider = null,
|
|
private ?int $organizationId = null,
|
|
) {
|
|
}
|
|
|
|
public function getId(): int {
|
|
return $this->id;
|
|
}
|
|
|
|
public function getName(): string {
|
|
return $this->name;
|
|
}
|
|
|
|
public function getQuota(): int {
|
|
return $this->quota;
|
|
}
|
|
|
|
public function jsonSerialize(): array {
|
|
return [
|
|
'id' => $this->id,
|
|
'name' => $this->name,
|
|
'quota' => $this->quota,
|
|
'organizationProvider' => $this->organizationProvider,
|
|
'organizationId' => $this->organizationId,
|
|
];
|
|
}
|
|
|
|
public function tableSerialize(?array $params = null): array {
|
|
return [
|
|
'Id' => $this->id,
|
|
'Name' => $this->name,
|
|
'Quota' => $this->quota,
|
|
'Organization Provider' => $this->organizationProvider,
|
|
'Organization Id' => $this->organizationId,
|
|
];
|
|
}
|
|
} |