M3::ServerView::FindJobEntry - Records returned by 'findjob' view.


M3-ServerView documentation Contained in the M3-ServerView distribution.

Index


Code Index:

NAME

Top

M3::ServerView::FindJobEntry - Records returned by 'findjob' view.

INTERFACE

Top

ATTRIBUTES

The following attributes are available as accessors and are also searchable. Type of value within parenthesis.

no (numerical)
type (text)
name (text)
id (numerical)
user (text)
status (text)
change (numerical)

M3-ServerView documentation Contained in the M3-ServerView distribution.

package M3::ServerView::FindJobEntry;

use strict;
use warnings;

use base qw(M3::ServerView::Entry);

# Build accessors
use Object::Tiny qw(
    no
    type
    name
    id
    user
    status
    change
);

1;
__END__