summaryrefslogtreecommitdiffstats
path: root/library/Director/Objects/IcingaServiceSetAssignment.php
blob: 4a6ebbcdc1c29806e3e0eb63d3bc25c2f19f2c2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php

namespace Icinga\Module\Director\Objects;

class IcingaServiceSetAssignment extends IcingaObject
{
    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',
    );
}