|
7 | 7 | use Illuminate\Database\Eloquent\Model; |
8 | 8 |
|
9 | 9 | /** |
10 | | - * @property-read WhiteLabelConfig|null $whiteLabelConfig |
| 10 | + * @property int $id |
| 11 | + * @property string $uuid |
| 12 | + * @property string $name |
| 13 | + * @property string|null $slug |
| 14 | + * @property bool $whitelabel_public_access |
| 15 | + * @property string|null $hierarchy_type |
| 16 | + * @property int|null $hierarchy_level |
| 17 | + * @property int|null $parent_organization_id |
| 18 | + * @property array|null $branding_config |
| 19 | + * @property array|null $feature_flags |
| 20 | + * @property bool $is_active |
| 21 | + * @property \Illuminate\Support\Carbon|null $created_at |
| 22 | + * @property \Illuminate\Support\Carbon|null $updated_at |
| 23 | + * @property-read \App\Models\Organization|null $parent |
| 24 | + * @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Organization> $children |
| 25 | + * @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\User> $users |
| 26 | + * @property-read \App\Models\EnterpriseLicense|null $activeLicense |
| 27 | + * @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\EnterpriseLicense> $licenses |
| 28 | + * @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Server> $servers |
| 29 | + * @property-read \App\Models\WhiteLabelConfig|null $whiteLabelConfig |
| 30 | + * @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\CloudProviderCredential> $cloudProviderCredentials |
| 31 | + * @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\TerraformDeployment> $terraformDeployments |
| 32 | + * @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Application> $applications |
| 33 | + * @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Domain> $domains |
11 | 34 | */ |
12 | 35 | class Organization extends Model |
13 | 36 | { |
|
0 commit comments