1 package FS::clientapi_session_field;
5 use FS::Record qw( qsearch qsearchs );
11 FS::clientapi_session_field - Object methods for clientapi_session_field records
15 use FS::clientapi_session_field;
17 $record = new FS::clientapi_session_field \%hash;
18 $record = new FS::clientapi_session_field { 'column' => 'value' };
20 $error = $record->insert;
22 $error = $new_record->replace($old_record);
24 $error = $record->delete;
26 $error = $record->check;
30 An FS::clientapi_session_field object represents a FS::ClientAPI session data
31 field. FS::clientapi_session_field inherits from FS::Record. The following
32 fields are currently supported:
36 =item fieldnum - primary key
38 =item sessionnum - Base ClientAPI sesison (see L<FS::clientapi_session>)
52 Creates a new record. To add the record to the database, see L<"insert">.
54 Note that this stores the hash reference, not a distinct copy of the hash it
55 points to. You can ask the object for a copy with the I<hash> method.
59 # the new method can be inherited from FS::Record, if a table method is defined
61 sub table { 'clientapi_session_field'; }
65 Adds this record to the database. If there is an error, returns the error,
66 otherwise returns false.
70 # the insert method can be inherited from FS::Record
74 Delete this record from the database.
78 # the delete method can be inherited from FS::Record
80 =item replace OLD_RECORD
82 Replaces the OLD_RECORD with this one in the database. If there is an error,
83 returns the error, otherwise returns false.
87 # the replace method can be inherited from FS::Record
91 Checks all fields to make sure this is a valid record. If there is
92 an error, returns the error, otherwise returns false. Called by the insert
97 # the check method should currently be supplied - FS::Record contains some
98 # data checking routines
104 $self->ut_numbern('primary_key')
105 || $self->ut_number('validate_other_fields')
107 return $error if $error;
118 L<FS::clientapi_session>, L<FS::ClientAPI>, L<FS::Record>, schema.html from the