File Coverage

blib/lib/WebService/Auth0/Management/Tickets.pm
Criterion Covered Total %
statement 3 8 37.5
branch n/a
condition n/a
subroutine 1 4 25.0
pod 3 3 100.0
total 7 15 46.6


line stmt bran cond sub pod time code
1             package WebService::Auth0::Management::Tickets;
2              
3 1     1   94325 use Moo;
  1         8904  
  1         4  
4             extends 'WebService::Auth0::Management::Base';
5              
6 0     0 1   sub path_suffix { 'tickets' }
7              
8             sub create_email_verification {
9 0     0 1   my ($self, $params) = @_;
10 0           return $self->POST_JSON($self->uri_for('email-verification'), $params);
11             }
12              
13             sub create_password_change {
14 0     0 1   my ($self, $params) = @_;
15 0           return $self->POST_JSON($self->uri_for('password-change'), $params);
16             }
17              
18             =head1 NAME
19              
20             WebService::Auth0::Management::Tickets - Users management API
21              
22             =head1 SYNOPSIS
23              
24             =head1 DESCRIPTION
25              
26             =head1 METHODS
27              
28             This class defines the following methods:
29              
30             =head2 create_email_verification
31              
32             L
33              
34             =head2 create_password_change
35              
36             L
37              
38             =head1 SEE ALSO
39            
40             L, L.
41              
42             =head1 AUTHOR
43            
44             See L
45            
46             =head1 COPYRIGHT & LICENSE
47            
48             See L
49              
50             =cut
51              
52             1;