mirror of
https://github.com/verdigado/organization_folders.git
synced 2024-12-06 11:22:41 +01:00
use new more versatile tag query methods
This commit is contained in:
parent
82d95da322
commit
79a1c1e9f3
3 changed files with 19 additions and 5 deletions
|
@ -10,6 +10,8 @@ class OrganizationFolder implements JsonSerializable, TableSerializable {
|
|||
private int $id,
|
||||
private string $name,
|
||||
private int $quota,
|
||||
private ?string $organizationProvider = null,
|
||||
private ?int $organizationId = null,
|
||||
) {
|
||||
}
|
||||
|
||||
|
@ -30,6 +32,8 @@ class OrganizationFolder implements JsonSerializable, TableSerializable {
|
|||
'id' => $this->id,
|
||||
'name' => $this->name,
|
||||
'quota' => $this->quota,
|
||||
'organizationProvider' => $this->organizationProvider,
|
||||
'organizationId' => $this->organizationId,
|
||||
];
|
||||
}
|
||||
|
||||
|
@ -38,6 +42,8 @@ class OrganizationFolder implements JsonSerializable, TableSerializable {
|
|||
'Id' => $this->id,
|
||||
'Name' => $this->name,
|
||||
'Quota' => $this->quota,
|
||||
'Organization Provider' => $this->organizationProvider,
|
||||
'Organization Id' => $this->organizationId,
|
||||
];
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue