You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ngcp-panel/lib/NGCP/Panel/Form/CallQueue/API.pm

33 lines
682 B

package NGCP::Panel::Form::CallQueue::API;
use HTML::FormHandler::Moose;
extends 'HTML::FormHandler';
has_field 'id' => (
type => 'Hidden',
noupdate => 1,
);
has_field 'queue_length' => (
type => 'Integer',
required => 0,
default => '0',
element_attr => {
rel => ['tooltip'],
title => ['The length of the call queue.']
},
);
has_field 'queue' => (
type => 'Repeatable',
do_wrapper => 1,
do_label => 0,
required => 0,
element_attr => {
rel => ['tooltip'],
title => ['Number of Objects, each containing the keys ' .
'"start_time", "duration", "callee" and "caller".'],
},
);
1;