NAME

FS::prepay_credit - Object methods for prepay_credit records


SYNOPSIS

  use FS::prepay_credit;
  $record = new FS::prepay_credit \%hash;
  $record = new FS::prepay_credit {
    'identifier' => '4198123455512121'
    'amount'     => '19.95',
  };
  $error = $record->insert;
  $error = $new_record->replace($old_record);
  $error = $record->delete;
  $error = $record->check;


DESCRIPTION

An FS::table_name object represents an pre--paid credit, such as a pre-paid ``calling card''. FS::prepay_credit inherits from FS::Record. The following fields are currently supported:

field - description
identifier - identifier entered by the user to receive the credit
amount - amount of the credit


METHODS

new HASHREF
Creates a new pre-paid credit. To add the example to the database, see insert.

Note that this stores the hash reference, not a distinct copy of the hash it points to. You can ask the object for a copy with the hash method.

insert
Adds this record to the database. If there is an error, returns the error, otherwise returns false.

delete
Delete this record from the database.

replace OLD_RECORD
Replaces the OLD_RECORD with this one in the database. If there is an error, returns the error, otherwise returns false.

check
Checks all fields to make sure this is a valid pre-paid credit. If there is an error, returns the error, otherwise returns false. Called by the insert and replace methods.


VERSION

$Id: prepay_credit.html,v 1.3 2002-01-29 17:42:46 ivan Exp $


BUGS


SEE ALSO

the FS::Record manpage, schema.html from the base documentation.