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/Conversation/API.pm

25 lines
594 B

package NGCP::Panel::Form::Conversation::API;
use HTML::FormHandler::Moose;
extends 'HTML::FormHandler';
has_field 'type' => (
type => 'Text',
label => 'The conversation event type: call/voicemail/sms/fax/xmpp.',
required => 1,
);
has_field 'id' => (
type => 'PosInteger',
label => 'The original conversation record id - cdr id/voicemail id/sms id/fax journal record id/prosody message archive mgmt (mam) record id.',
required => 1,
);
has_field 'timestamp' => (
type => 'Text',
label => 'The timestamp of the conversation event.',
required => 1,
);
1;