add skip_dcontext_suffix to skip CDRs with dcontext ending in a definable string...
[freeside.git] / FS / FS / part_pkg / prepaid_nibblebill.pm
1 package FS::part_pkg::prepaid_nibblebill;
2 use base qw( FS::part_pkg::flat );
3
4 use strict;
5 use vars qw(%info);
6
7 %info = (
8   'name' => 'Prepaid credit in FreeSWITCH mod_nibblebill',
9   #'name' => 'Prepaid (no automatic recurring)', #maybe use it here too
10   'shortname' => 'Prepaid FreeSWITCH mod_nibblebill',
11   #'inherit_fields' => [ 'global_Mixin' ],
12   'fields' => {
13     'setup_fee'   => { 'default' => 0, },
14     'recur_fee'   => { 'default' => 0, },
15     'nibble_rate' => { 'name' => 'Nibble rate' },
16   },
17   'fieldorder' => [ qw( setup_fee recur_fee nibble_rate ) ],
18   'weight' => 49,
19 );
20
21 sub is_prepaid {
22   1;
23 }
24
25 1;
26