Kernel::GenericInterface::Operation::Link::PossibleLinkList

NAME

Kernel::GenericInterface::Operation::Link::PossibleLinkList – GenericInterface PossibleLinkList Operation backend

PUBLIC INTERFACE

Run()

perform PossibleLinkList Operation. This function is able to return one or more possible link types in one call.

    my $Result = $OperationObject->Run(
        Data => {
            UserLogin => 'some agent login',    # UserLogin or SessionID is
                                                #   required
            SessionID => 123,

            Password  => 'some password',       # if UserLogin is sent then Password is required
        },
    );

    $Result = {
        Success      => 1,                      # 0 or 1
        ErrorMessage => '',                     # In case of an error
        Data         => {
            PossibleLinkList => [
                {
                   Object1 => 'Ticket',
                   Object2 => 'Ticket',
                   Type    => 'Normal',
                },
                ...
            ],
        },
    };
Scroll to Top