icingaweb2-module-director/library/Director/Objects/IcingaNotificationField.php

18 lines
420 B
PHP

<?php
namespace Icinga\Module\Director\Objects;
class IcingaNotificationField extends IcingaObjectField
{
protected $keyName = array('notification_id', 'datafield_id');
protected $table = 'icinga_notification_field';
protected $defaultProperties = array(
'notification_id' => null,
'datafield_id' => null,
'is_required' => null,
'var_filter' => null,
);
}