File Coverage

blib/lib/WebService/Mattermost/V4/API/Object/Status.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package WebService::Mattermost::V4::API::Object::Status;
2:

3: # ABSTRACT: A status object. 4:
5: use Moo;
6: use Types::Standard qw(Str Int);
7:
8: extends 'WebService::Mattermost::V4::API::Object';
9: with 'WebService::Mattermost::V4::API::Object::Role::Status';
10:
11: ################################################################################
12:
13: 1;
14:
15: __END__
16:
17: =pod
18:
19: =encoding UTF-8
20:
21: =head1 NAME
22:
23: WebService::Mattermost::V4::API::Object::Status - A status object.
24:
25: =head1 VERSION
26:
27: version 0.30
28:
29: =head1 DESCRIPTION
30:
31: Details a Mattermost Status object.
32:
33: =head1 SEE ALSO
34:
35: =over 4
36:
37: =item L<WebService::Mattermost::V4::API::Object::Role::Status>
38:
39: =back
40:
41: =head1 AUTHOR
42:
43: Mike Jones <mike@netsplit.org.uk>
44:
45: =head1 COPYRIGHT AND LICENSE
46:
47: This software is Copyright (c) 2023 by Mike Jones.
48:
49: This is free software, licensed under:
50:
51: The MIT (X11) License
52:
53: =cut
54: