1 package FS::cust_svc_option;
2 use base qw(FS::Record);
8 FS::cust_svc_option - Object methods for cust_svc_option records
12 use FS::cust_svc_option;
14 $record = new FS::cust_svc_option \%hash;
15 $record = new FS::cust_svc_option { 'column' => 'value' };
17 $error = $record->insert;
19 $error = $new_record->replace($old_record);
21 $error = $record->delete;
23 $error = $record->check;
27 An FS::cust_svc_option object represents an customer service option.
28 FS::cust_svc_option inherits from FS::Record. The following fields are
39 svcnum (see L<FS::cust_svc>)
58 Creates a new option. To add the option to the database, see L<"insert">.
60 Note that this stores the hash reference, not a distinct copy of the hash it
61 points to. You can ask the object for a copy with the I<hash> method.
65 # the new method can be inherited from FS::Record, if a table method is defined
67 sub table { 'cust_svc_option'; }
71 Adds this record to the database. If there is an error, returns the error,
72 otherwise returns false.
76 # the insert method can be inherited from FS::Record
80 Delete this record from the database.
84 # the delete method can be inherited from FS::Record
86 =item replace OLD_RECORD
88 Replaces the OLD_RECORD with this one in the database. If there is an error,
89 returns the error, otherwise returns false.
93 # the replace method can be inherited from FS::Record
97 Checks all fields to make sure this is a valid option. If there is
98 an error, returns the error, otherwise returns false. Called by the insert
103 # the check method should currently be supplied - FS::Record contains some
104 # data checking routines
110 $self->ut_numbern('optionnum')
111 || $self->ut_foreign_key('svcnum', 'cust_svc', 'svcnum')
112 || $self->ut_alpha('optionname')
113 || $self->ut_anything('optionvalue')
115 return $error if $error;
126 L<FS::Record>, schema.html from the base documentation.