1 package FS::torrus_srvderive_component;
2 use base qw( FS::Record );
8 FS::torrus_srvderive_component - Object methods for torrus_srvderive_component records
12 use FS::torrus_srvderive_component;
14 $record = new FS::torrus_srvderive_component \%hash;
15 $record = new FS::torrus_srvderive_component { 'column' => 'value' };
17 $error = $record->insert;
19 $error = $new_record->replace($old_record);
21 $error = $record->delete;
23 $error = $record->check;
27 An FS::torrus_srvderive_component object represents a component of a Torrus
28 virtual service ID. FS::torrus_srvderive_component inherits from FS::Record.
29 The following fields are currently supported:
54 Creates a new record. To add the record to the database, see L<"insert">.
56 Note that this stores the hash reference, not a distinct copy of the hash it
57 points to. You can ask the object for a copy with the I<hash> method.
61 # the new method can be inherited from FS::Record, if a table method is defined
63 sub table { 'torrus_srvderive_component'; }
67 Adds this record to the database. If there is an error, returns the error,
68 otherwise returns false.
72 # the insert method can be inherited from FS::Record
76 Delete this record from the database.
80 # the delete method can be inherited from FS::Record
82 =item replace OLD_RECORD
84 Replaces the OLD_RECORD with this one in the database. If there is an error,
85 returns the error, otherwise returns false.
89 # the replace method can be inherited from FS::Record
93 Checks all fields to make sure this is a valid record. If there is
94 an error, returns the error, otherwise returns false. Called by the insert
99 # the check method should currently be supplied - FS::Record contains some
100 # data checking routines
106 $self->ut_numbern('componentnum')
107 || $self->ut_number('derivenum')
108 || $self->ut_text('serviceid')
110 return $error if $error;
121 L<FS::Record>, schema.html from the base documentation.