aboutsummaryrefslogtreecommitdiffstats
path: root/perllib/Open311/Endpoint/Service.pm
blob: 2c28c6d7977664f5ca26b511f6c9be292bcc1aca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
package Open311::Endpoint::Service;
use Moo;
use MooX::HandlesVia;
use Types::Standard ':all';
use namespace::clean;

has service_name => (
    is => 'ro',
    isa => Str,
);

has service_code => (
    is => 'ro',
    isa => Str,
);

has default_service_notice => (
    is => 'ro',
    isa => Maybe[Str],
    predicate => 1,
);

has description => (
    is => 'ro',
    isa => Str,
);

has keywords => (
    is => 'ro',
    isa => ArrayRef[Str],
    default => sub { [] },
);

has group => (
    is => 'ro',
    isa => Str,
);

has type => (
    is => 'ro',
    isa => Enum[qw/ realtime batch blackbox /],
);

has attributes => (
    is => 'ro',
    isa => ArrayRef[ InstanceOf['Open311::Endpoint::Service::Attribute'] ],
    default => sub { [] },
    handles_via => 'Array',
    handles => {
        has_attributes => 'count',
        get_attributes => 'elements',
    }
);

1;