1 package FS::access_groupagent;
5 use FS::Record qw( qsearch qsearchs );
12 FS::access_groupagent - Object methods for access_groupagent records
16 use FS::access_groupagent;
18 $record = new FS::access_groupagent \%hash;
19 $record = new FS::access_groupagent { 'column' => 'value' };
21 $error = $record->insert;
23 $error = $new_record->replace($old_record);
25 $error = $record->delete;
27 $error = $record->check;
31 An FS::access_groupagent object represents an group reseller virtualization. FS::access_groupagent inherits from
32 FS::Record. The following fields are currently supported:
36 =item groupagentnum - primary key
51 Creates a new group reseller virtualization. To add the record to the database, see L<"insert">.
53 Note that this stores the hash reference, not a distinct copy of the hash it
54 points to. You can ask the object for a copy with the I<hash> method.
58 # the new method can be inherited from FS::Record, if a table method is defined
60 sub table { 'access_groupagent'; }
64 Adds this record to the database. If there is an error, returns the error,
65 otherwise returns false.
69 # the insert method can be inherited from FS::Record
73 Delete this record from the database.
77 # the delete method can be inherited from FS::Record
79 =item replace OLD_RECORD
81 Replaces the OLD_RECORD with this one in the database. If there is an error,
82 returns the error, otherwise returns false.
86 # the replace method can be inherited from FS::Record
90 Checks all fields to make sure this is a valid group reseller virtualization. If there is
91 an error, returns the error, otherwise returns false. Called by the insert
96 # the check method should currently be supplied - FS::Record contains some
97 # data checking routines
103 $self->ut_numbern('groupagentnum')
104 || $self->ut_foreign_key('groupnum', 'access_group', 'groupnum')
105 || $self->ut_foreign_key('agentnum', 'agent', 'agentnum')
107 return $error if $error;
114 Returns the associated FS::agent object.
120 qsearchs('agent', { 'agentnum' => $self->agentnum } );
129 L<FS::Record>, schema.html from the base documentation.