File Coverage

blib/lib/Yahoo/Marketing/PaymentMethodInfo.pm
Criterion Covered Total %
statement 7 9 77.7
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 10 12 83.3


line stmt bran cond sub pod time code
1             package Yahoo::Marketing::PaymentMethodInfo;
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   56068 use strict; use warnings;
  2     2   6  
  2         75  
  2         10  
  2         4  
  2         54  
6              
7 2     2   7057 use Yahoo::Marketing::Address;
  0            
  0            
8             use Yahoo::Marketing::BillingUser;
9              
10             use base qw/Yahoo::Marketing::ComplexType/;
11              
12             =head1 NAME
13              
14             Yahoo::Marketing::PaymentMethodInfo - an object to represent a Yahoo Marketing PaymentMethodInfo.
15              
16             =cut
17              
18             sub _user_setable_attributes {
19             return ( qw/
20             ID
21             displayNumber
22             expirationDate
23             billingAddress
24             billingUser
25             / );
26             }
27              
28             sub _read_only_attributes {
29             return ( qw/
30             / );
31             }
32              
33             __PACKAGE__->mk_accessors( __PACKAGE__->_user_setable_attributes,
34             __PACKAGE__->_read_only_attributes
35             );
36              
37              
38              
39             1;
40             =head1 SYNOPSIS
41              
42             See L for documentation of the various data objects.
43              
44              
45             =cut
46              
47             =head1 METHODS
48              
49             =head2 new
50              
51             Creates a new instance
52              
53             =head2 get/set methods
54              
55             =over 8
56              
57             ID
58             displayNumber
59             expirationDate
60             billingAddress
61             billingUser
62              
63             =back
64              
65             =head2 get (read only) methods
66              
67             =over 8
68              
69              
70             =back
71              
72             =cut
73