2016-10-12 09:19:02 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Icinga\Module\Director\Objects;
|
|
|
|
|
2019-09-11 22:26:23 +02:00
|
|
|
class IcingaServiceSetAssignment extends IcingaObject
|
2016-10-12 09:19:02 +02:00
|
|
|
{
|
|
|
|
protected $table = 'icinga_service_set_assignment';
|
|
|
|
|
|
|
|
protected $keyName = 'id';
|
|
|
|
|
|
|
|
protected $defaultProperties = array(
|
|
|
|
'id' => null,
|
|
|
|
'service_set_id' => null,
|
|
|
|
'filter_string' => null,
|
|
|
|
);
|
|
|
|
|
|
|
|
protected $relations = array(
|
|
|
|
'service_set' => 'IcingaServiceSet',
|
|
|
|
);
|
|
|
|
}
|