File Coverage

blib/lib/Yahoo/Marketing/APT/LibraryCustomHTMLAdResponse.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::APT::LibraryCustomHTMLAdResponse;
2             # Copyright (c) 2010 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   48363 use strict; use warnings;
  1     1   2  
  1         30  
  1         6  
  1         2  
  1         27  
6              
7 1     1   5 use base qw/Yahoo::Marketing::ComplexType/;
  1         3  
  1         803  
8              
9             =head1 NAME
10              
11             Yahoo::Marketing::APT::LibraryCustomHTMLAdResponse - a data object to represent a LibraryCustomHTMLAdResponse.
12              
13             =cut
14              
15             sub _user_setable_attributes {
16             return ( qw/
17             errors
18             libraryCustomHTMLAd
19             operationSucceeded
20             / );
21             }
22              
23             sub _read_only_attributes {
24             return ( qw/
25             / );
26             }
27              
28             __PACKAGE__->mk_accessors( __PACKAGE__->_user_setable_attributes,
29             __PACKAGE__->_read_only_attributes
30             );
31              
32              
33             1;
34             =head1 SYNOPSIS
35              
36             See L for documentation of the various data objects.
37              
38              
39             =cut
40              
41             =head1 METHODS
42              
43             =head2 new
44              
45             Creates a new instance
46              
47             =head2 get/set methods
48              
49             =over 8
50              
51             errors
52             libraryCustomHTMLAd
53             operationSucceeded
54              
55             =back
56              
57             =head2 get (read only) methods
58              
59             =over 8
60              
61              
62             =back
63              
64             =cut
65