File Coverage

blib/lib/Yahoo/Marketing/UserManagementService.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package Yahoo::Marketing::UserManagementService;
2             # Copyright (c) 2009 Yahoo! Inc. All rights reserved.
3             # The copyrights to the contents of this file are licensed under the Perl Artistic License (ver. 15 Aug 1997)
4              
5 1     1   3458 use strict; use warnings;
  1     1   3  
  1         45  
  1         6  
  1         3  
  1         38  
6              
7 1     1   6 use base qw/Yahoo::Marketing::Service/;
  1         6  
  1         173  
8              
9              
10             =head1 NAME
11              
12             Yahoo::Marketing::UserManagementService - provides operations for user, authorization, and payment method management.
13              
14             Operations that include the word "my" can be executed by any user but only to add, get, or update their own user information. User name and password are included in the SOAP header for the request.
15              
16             Operations that include the word "user" can be executed by an administrator for another user but only if the administrator has access to that user's information based on the admin's role and the account.
17              
18              
19             =cut
20              
21             =head1 SYNOPSIS
22              
23             See EWS documentation online for available SOAP methods:
24              
25             L
26              
27             Also see perldoc Yahoo::Marketing::Service for functionality common to all service modules.
28              
29              
30              
31              
32             =head2 new
33              
34             Creates a new instance
35              
36             =cut
37              
38              
39              
40             1;