File Coverage

blib/lib/WebService/Auth0/Management/DeviceCredentials.pm
Criterion Covered Total %
statement 3 4 75.0
branch n/a
condition n/a
subroutine 1 2 50.0
pod 1 1 100.0
total 5 7 71.4


line stmt bran cond sub pod time code
1             package WebService::Auth0::Management::DeviceCredentials;
2              
3 1     1   94627 use Moo;
  1         8888  
  1         3  
4              
5             extends 'WebService::Auth0::Management::Base';
6             with 'WebService::Auth0::Management::Role::All',
7             'WebService::Auth0::Management::Role::Search',
8             'WebService::Auth0::Management::Role::Create',
9             'WebService::Auth0::Management::Role::Delete';
10              
11 0     0 1   sub path_suffix { 'device-credentials' }
12              
13             =head1 NAME
14              
15             WebService::Auth0::Management::DeviceCredentials - Device Credential manager
16              
17             =head1 SYNOPSIS
18              
19             NA
20              
21             =head1 DESCRIPTION
22              
23             You can copy this template for making new management endpoints to help
24             you get rolling faster.
25              
26             =head1 METHODS
27              
28             This class defines the following methods:
29              
30             =head2 all
31              
32             =head2 search
33              
34             L
35              
36             =head2 create
37              
38             L
39              
40             =head2 delete
41              
42             L
43              
44             =head1 SEE ALSO
45            
46             L, L,
47             L.
48              
49             =head1 AUTHOR
50            
51             See L
52            
53             =head1 COPYRIGHT & LICENSE
54            
55             See L
56              
57             =cut
58              
59             1;