add customer fields option with agent, display_custnum, status and name, RT#73721
[freeside.git] / FS / FS / h_cust_pay.pm
1 package FS::h_cust_pay;
2
3 use strict;
4 use vars qw( @ISA );
5 use FS::h_Common;
6 use FS::cust_pay;
7
8 @ISA = qw( FS::h_Common FS::cust_pay );
9
10 sub table { 'h_cust_pay' };
11
12 =head1 NAME
13
14 FS::h_cust_pay - Historical record of customer payment changes
15
16 =head1 SYNOPSIS
17
18 =head1 DESCRIPTION
19
20 An FS::h_cust_pay object represents historical changes to payments.
21 FS::h_cust_pay inherits from FS::h_Common and FS::cust_pay.
22
23 =head1 BUGS
24
25 =head1 SEE ALSO
26
27 L<FS::cust_pay>,  L<FS::h_Common>, L<FS::Record>, schema.html from the base
28 documentation.
29
30 =cut
31
32 1;
33