1 package FS::access_groupagent;
5 use FS::Record qw( qsearch qsearchs );
13 FS::access_groupagent - Object methods for access_groupagent records
17 use FS::access_groupagent;
19 $record = new FS::access_groupagent \%hash;
20 $record = new FS::access_groupagent { 'column' => 'value' };
22 $error = $record->insert;
24 $error = $new_record->replace($old_record);
26 $error = $record->delete;
28 $error = $record->check;
32 An FS::access_groupagent object represents an group reseller virtualization. FS::access_groupagent inherits from
33 FS::Record. The following fields are currently supported:
37 =item groupagentnum - primary key
52 Creates a new group reseller virtualization. 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 { 'access_groupagent'; }
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 group reseller virtualization. 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('groupagentnum')
105 || $self->ut_foreign_key('groupnum', 'access_group', 'groupnum')
106 || $self->ut_foreign_key('agentnum', 'agent', 'agentnum')
108 return $error if $error;
115 Returns the associated FS::agent object.
121 qsearchs('agent', { 'agentnum' => $self->agentnum } );
126 Returns the associated FS::access_group object.
132 qsearchs('access_group', { 'groupnum' => $self->groupnum } );
141 L<FS::Record>, schema.html from the base documentation.