Freeside:1.9:Documentation:Developer/FS/banned pay

From Freeside
Jump to: navigation, search

NAME

FS::banned_pay - Object methods for banned_pay records

SYNOPSIS

 use FS::banned_pay;

 $record = new FS::banned_pay \%hash;
 $record = new FS::banned_pay { 'column' => 'value' };

 $error = $record->insert;

 $error = $new_record->replace($old_record);

 $error = $record->delete;

 $error = $record->check;

DESCRIPTION

An FS::banned_pay object represents an banned credit card or ACH account. FS::banned_pay inherits from FS::Record. The following fields are currently supported:

bannum - primary key; payby - CARD or CHEK; payinfo - fingerprint of banned card (base64-encoded MD5 digest); _date - specified as a UNIX timestamp; see "time" in perlfunc. Also see Time::Local and Date::Parse for conversion functions.; otaker - order taker (assigned automatically, see FS::UID); reason - reason (text)

METHODS

new HASHREF
Creates a new ban. To add the ban 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 ban. If there is an error, returns the error, otherwise returns false. Called by the insert and replace methods.

BUGS

SEE ALSO

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