The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use strict;

package URMS::Services::RequestInfoWindow::Defaults::V;

use Moose;

extends 'Salvation::Service::View';

 sub main
 {
        return [
                raw => [
                        'id',
                        'serial_number',
                        'title',
                        'comment'
                ],
                custom => [
                        'type'
                ]
        ];
 }

no Moose;

-1;