Kernel::GenericInterface::Operation::Link::PossibleTypesList

NAME

Kernel::GenericInterface::Operation::Link::PossibleTypesList – GenericInterface PossibleTypesList Operation backend

PUBLIC INTERFACE

Run()

perform PossibleTypesList 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
            Object1   => 'Ticket',              # required
            Object2   => 'FAQ',                 # required
        },
    );

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