rename nt to nextone
[freeside.git] / FS / FS / cdr / nextone.pm
1 package FS::cdr::nextone;
2
3 use vars qw(@ISA %info);
4 use FS::cdr qw(_cdr_date_parser_maker);
5
6 @ISA = qw(FS::cdr);
7
8 %info = (
9   'name'          => 'Nextone',
10   'weight'        => 200,
11   'header'        => 1,
12   'import_fields' => [
13     'userfield',  #CallZoneData ???userfield
14     'channel',    #OrigGw
15     'dstchannel', #TermGw
16     'duration',   #Duration
17     'dst',        #CallDTMF
18     'src',        #Ani
19     'startdate',  #DateTimeInt
20   ],
21 );
22
23 1;