1 package FS::payment_gateway_option;
5 use FS::Record qw( qsearch qsearchs );
11 FS::payment_gateway_option - Object methods for payment_gateway_option records
15 use FS::payment_gateway_option;
17 $record = new FS::payment_gateway_option \%hash;
18 $record = new FS::payment_gateway_option { 'column' => 'value' };
20 $error = $record->insert;
22 $error = $new_record->replace($old_record);
24 $error = $record->delete;
26 $error = $record->check;
30 An FS::payment_gateway_option object represents an option key and value for
31 a payment gateway. FS::payment_gateway_option inherits from
32 FS::Record. The following fields are currently supported:
36 =item optionnum - primary key
53 Creates a new option. To add the option to the database, see L<"insert">.
55 Note that this stores the hash reference, not a distinct copy of the hash it
56 points to. You can ask the object for a copy with the I<hash> method.
60 # the new method can be inherited from FS::Record, if a table method is defined
62 sub table { 'payment_gateway_option'; }
66 Adds this record to the database. If there is an error, returns the error,
67 otherwise returns false.
71 # the insert method can be inherited from FS::Record
75 Delete this record from the database.
79 # the delete method can be inherited from FS::Record
81 =item replace OLD_RECORD
83 Replaces the OLD_RECORD with this one in the database. If there is an error,
84 returns the error, otherwise returns false.
88 # the replace method can be inherited from FS::Record
92 Checks all fields to make sure this is a valid option. If there is
93 an error, returns the error, otherwise returns false. Called by the insert
98 # the check method should currently be supplied - FS::Record contains some
99 # data checking routines
105 $self->ut_numbern('optionnum')
106 || $self->ut_foreign_key('gatewaynum', 'payment_gateway', 'gatewaynum')
107 || $self->ut_text('optionname')
108 || $self->ut_textn('optionvalue')
110 return $error if $error;
121 L<FS::Record>, schema.html from the base documentation.