File Coverage

blib/lib/Yahoo/Marketing/User.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::User;
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 2     2   45184 use strict; use warnings;
  2     2   4  
  2         64  
  2         10  
  2         4  
  2         58  
6              
7 2     2   12 use base qw/Yahoo::Marketing::ComplexType/;
  2         3  
  2         626  
8              
9             =head1 NAME
10              
11             Yahoo::Marketing::User - an object to represent a Yahoo Marketing User.
12              
13             =cut
14              
15             sub _user_setable_attributes {
16             return ( qw/
17             email
18             fax
19             firstName
20             firstNameFurigana
21             lastName
22             lastNameFurigana
23             locale
24             middleInitial
25             mobilePhone
26             timezone
27             title
28             workPhone
29             / );
30             }
31              
32             sub _read_only_attributes {
33             return ( qw/
34             / );
35             }
36              
37             __PACKAGE__->mk_accessors( __PACKAGE__->_user_setable_attributes,
38             __PACKAGE__->_read_only_attributes
39             );
40              
41              
42             1;
43             =head1 SYNOPSIS
44              
45             See L for documentation of the various data objects.
46              
47              
48             =cut
49              
50             =head1 METHODS
51              
52             =head2 new
53              
54             Creates a new instance
55              
56             =head2 get/set methods
57              
58             =over 8
59              
60             email
61             fax
62             firstName
63             firstNameFurigana
64             lastName
65             lastNameFurigana
66             locale
67             middleInitial
68             mobilePhone
69             timezone
70             title
71             workPhone
72              
73             =back
74              
75             =head2 get (read only) methods
76              
77             =over 8
78              
79              
80             =back
81              
82             =cut
83